LeviLamina
Loading...
Searching...
No Matches
ThreadPool.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace OS { struct ThreadPoolActionStatus; }
8// clang-format on
9
10namespace OS {
11
12struct ThreadPool {
13public:
14 // member functions
15 // NOLINTBEGIN
16 MCAPI long Initialize(void*, void (*)(void*, ::OS::ThreadPoolActionStatus&));
17
18 MCAPI void Submit();
19
20 MCAPI void Terminate();
21
22 MCAPI ThreadPool();
23
24 MCAPI ~ThreadPool();
25 // NOLINTEND
26
27public:
28 // constructor thunks
29 // NOLINTBEGIN
30 MCAPI void* $ctor();
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCAPI void $dtor();
37 // NOLINTEND
38};
39
40} // namespace OS
Definition ThreadPoolActionStatus.h:7
Definition ThreadPool.h:12