Group: Time - Library: kernel32
The QueryPerformanceCounter function retrieves the current value of the high-resolution performance counter.
Using the GetTempFileName
Using the high-resolution performance counter
BOOL QueryPerformanceCounter(
LARGE_INTEGER *lpPerformanceCount // counter value
);
DECLARE INTEGER QueryPerformanceCounter IN kernel32;
STRING @lpPerformanceCount
lpPerformanceCount [out] Pointer to a variable that receives the current performance-counter value, in counts.
If the function succeeds, the return value is nonzero.
See functions QueryPerformanceFrequency, and GetTickCount.
Check the link for more information on time counters.