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