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
10class ThreadPoolImpl {
11public:
12 // ThreadPoolImpl inner types declare
13 // clang-format off
14 struct ActionStatusImpl;
15 // clang-format on
16
17 // ThreadPoolImpl inner types define
18 struct ActionStatusImpl : public ::OS::ThreadPoolActionStatus {
19 public:
20 // member variables
21 // NOLINTBEGIN
26 // NOLINTEND
27
28 public:
29 // prevent constructor by default
30 ActionStatusImpl& operator=(ActionStatusImpl const&);
31 ActionStatusImpl(ActionStatusImpl const&);
32 ActionStatusImpl();
33
34 public:
35 // virtual functions
36 // NOLINTBEGIN
37 virtual void Complete() /*override*/;
38
39 virtual void MayRunLong() /*override*/;
40 // NOLINTEND
41
42 public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCNAPI void $Complete();
46
47 MCNAPI void $MayRunLong();
48 // NOLINTEND
49
50 public:
51 // vftables
52 // NOLINTBEGIN
53 MCNAPI static void** $vftable();
54 // NOLINTEND
55 };
56
57public:
58 // member variables
59 // NOLINTBEGIN
64 // NOLINTEND
65
66public:
67 // prevent constructor by default
68 ThreadPoolImpl& operator=(ThreadPoolImpl const&);
71
72public:
73 // static functions
74 // NOLINTBEGIN
75 MCNAPI static void TPCallback(::_TP_CALLBACK_INSTANCE* instance, void* context, ::_TP_WORK*);
76 // NOLINTEND
77};
78
79} // namespace OS
Definition ThreadPoolImpl.h:7
static MCAPI void TPCallback(::_TP_CALLBACK_INSTANCE *instance, void *context, ::_TP_WORK *)
Definition ThreadPoolActionStatus.h:7
static MCAPI void ** $vftable()
Definition Alias.h:14