mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Implement GetTickCount64
svn path=/trunk/; revision=24660
This commit is contained in:
parent
e343b07d1f
commit
bcf2a300f2
3 changed files with 14 additions and 0 deletions
|
@ -519,6 +519,7 @@ GetThreadPriorityBoost@8
|
|||
GetThreadSelectorEntry@12
|
||||
GetThreadTimes@20
|
||||
GetTickCount@0
|
||||
GetTickCount64@0
|
||||
GetTimeFormatA@24
|
||||
GetTimeFormatW@24
|
||||
GetTimeZoneInformation@4
|
||||
|
|
|
@ -398,6 +398,16 @@ GetTickCount(VOID)
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
ULONGLONG WINAPI
|
||||
GetTickCount64(VOID)
|
||||
{
|
||||
return (ULONGLONG)SharedUserData->TickCountLowDeprecated * (ULONGLONG)SharedUserData->TickCountMultiplier / 16777216;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
|
|
@ -1592,6 +1592,9 @@ BOOL WINAPI GetThreadPriorityBoost(HANDLE,PBOOL);
|
|||
BOOL WINAPI GetThreadSelectorEntry(HANDLE,DWORD,LPLDT_ENTRY);
|
||||
BOOL WINAPI GetThreadTimes(HANDLE,LPFILETIME,LPFILETIME,LPFILETIME,LPFILETIME);
|
||||
DWORD WINAPI GetTickCount(VOID);
|
||||
#if (_WIN32_WINNT >= 0x0600)
|
||||
ULONGLONG WINAPI GetTickCount64(VOID);
|
||||
#endif
|
||||
DWORD WINAPI GetTimeZoneInformation(LPTIME_ZONE_INFORMATION);
|
||||
BOOL WINAPI GetTokenInformation(HANDLE,TOKEN_INFORMATION_CLASS,PVOID,DWORD,PDWORD);
|
||||
BOOL WINAPI GetUserNameA (LPSTR,PDWORD);
|
||||
|
|
Loading…
Reference in a new issue