ReactOS 0.4.17-dev-117-g313be0c
GetTickCount64.c File Reference
#include "k32_vista.h"
Include dependency graph for GetTickCount64.c:

Go to the source code of this file.

Functions

ULONGLONG WINAPI GetTickCount64 (VOID)
 

Function Documentation

◆ GetTickCount64()

ULONGLONG WINAPI GetTickCount64 ( VOID  )

Definition at line 9 of file GetTickCount64.c.

10{
11 LARGE_INTEGER TickCount;
12
13 TickCount = KiReadSystemTime(&SharedUserData->TickCount);
14
15 /* Convert to milliseconds */
16 return KiTickCountToMs(TickCount);
17}
FORCEINLINE ULONG64 KiTickCountToMs(_In_ LARGE_INTEGER TickCount)
Definition: kefuncs.h:453
FORCEINLINE LARGE_INTEGER KiReadSystemTime(_In_ volatile const KSYSTEM_TIME *SystemTime)
Definition: kefuncs.h:403
#define SharedUserData