mirror of
https://github.com/thunderbrewhq/common.git
synced 2025-12-12 03:02:29 +00:00
refactor(time): add TimingMethods enum value
This commit is contained in:
parent
4b06025afd
commit
48a95a9b30
1 changed files with 2 additions and 1 deletions
|
|
@ -7,7 +7,8 @@ enum TimingMethod {
|
||||||
Timing_NotSet = -1,
|
Timing_NotSet = -1,
|
||||||
Timing_BestAvailable = 0,
|
Timing_BestAvailable = 0,
|
||||||
Timing_GetTickCount = 1,
|
Timing_GetTickCount = 1,
|
||||||
Timing_QueryPerformanceCounter = 2
|
Timing_QueryPerformanceCounter = 2,
|
||||||
|
TimingMethods = 3
|
||||||
};
|
};
|
||||||
|
|
||||||
void OsTimeStartup(TimingMethod timingMethod);
|
void OsTimeStartup(TimingMethod timingMethod);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue