QueryPerformanceCounter function kernel32

int QueryPerformanceCounter(
  1. Pointer<Int64> lpPerformanceCount
)

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);