'Relative' in the sense that they can only sensibly compared to another time value obtained using the same function during the same program invocation.
11 lines
124 B
C
11 lines
124 B
C
|
|
#include <windows.h>
|
|
|
|
#define sleepMs(x) Sleep(x)
|
|
|
|
inline uint64_t getRelativeTimeStampMs()
|
|
{
|
|
return GetTickCount64();
|
|
}
|
|
|