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 MCNAPI long Initialize(void*, void (*)(void*, ::OS::ThreadPoolActionStatus&));
17
18 MCNAPI void Submit();
19
20 MCNAPI void Terminate();
21
22 MCNAPI ThreadPool();
23
24 MCNAPI ~ThreadPool();
25 // NOLINTEND
26
27public:
28 // constructor thunks
29 // NOLINTBEGIN
30 MCNAPI void* $ctor();
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCNAPI void $dtor();
37 // NOLINTEND
38};
39
40} // namespace OS
Definition ThreadPoolActionStatus.h:7
Definition ThreadPool.h:12
MCAPI void Submit()
MCAPI void Terminate()
MCAPI void * $ctor()
MCAPI long Initialize(void *, void(*)(void *, ::OS::ThreadPoolActionStatus &))
MCAPI void $dtor()
MCAPI ~ThreadPool()
MCAPI ThreadPool()