LeviLamina
Loading...
Searching...
No Matches
ThreadPoolImpl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/ThreadPoolActionStatus.h"
7
8namespace OS {
9
11public:
12 // ThreadPoolImpl inner types declare
13 // clang-format off
14 struct ActionStatusImpl;
15 // clang-format on
16
17 // ThreadPoolImpl inner types define
19 public:
20 // member variables
21 // NOLINTBEGIN
26 // NOLINTEND
27
28 public:
29 // prevent constructor by default
30 ActionStatusImpl& operator=(ActionStatusImpl const&);
33
34 public:
35 // virtual functions
36 // NOLINTBEGIN
37 // vIndex: 0
38 virtual void Complete() /*override*/;
39
40 // vIndex: 1
41 virtual void MayRunLong() /*override*/;
42 // NOLINTEND
43
44 public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCNAPI void $Complete();
48
49 MCNAPI void $MayRunLong();
50 // NOLINTEND
51
52 public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57 };
58
59public:
60 // member variables
61 // NOLINTBEGIN
66 // NOLINTEND
67
68public:
69 // prevent constructor by default
70 ThreadPoolImpl& operator=(ThreadPoolImpl const&);
73
74public:
75 // static functions
76 // NOLINTBEGIN
77 MCNAPI static void TPCallback(::_TP_CALLBACK_INSTANCE* instance, void* context, ::_TP_WORK*);
78 // NOLINTEND
79};
80
81} // namespace OS
Definition ThreadPoolImpl.h:10
static MCAPI void TPCallback(::_TP_CALLBACK_INSTANCE *instance, void *context, ::_TP_WORK *)
Definition ThreadPoolActionStatus.h:7
Definition ThreadPoolImpl.h:18
static MCAPI void ** $vftable()
Definition context.h:5
Definition Alias.h:14