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