QueryPerformanceCounter function kernel32
Retrieves the current value of the performance counter, which is a high resolution (<1us) time stamp that can be used for time-interval measurements.
BOOL QueryPerformanceCounter(
LARGE_INTEGER *lpPerformanceCount
);
Implementation
int QueryPerformanceCounter(Pointer<Int64> lpPerformanceCount) =>
_QueryPerformanceCounter(lpPerformanceCount);