LeviLamina
Loading...
Searching...
No Matches
AsyncState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct AsyncState {
6public:
7 // member variables
8 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 AsyncState& operator=(AsyncState const&);
30 AsyncState(AsyncState const&);
31 AsyncState();
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCNAPI void Release();
37 // NOLINTEND
38};
Definition AsyncState.h:5
MCAPI void Release()
Definition Alias.h:14