- Implement EngGetTickCount.

svn path=/trunk/; revision=34996
This commit is contained in:
James Tabor 2008-08-01 12:03:46 +00:00
parent 6e81d0c92b
commit 55f1b15382
2 changed files with 2 additions and 2 deletions

View file

@ -22,5 +22,6 @@ IntEngWindowChanged(
VOID FASTCALL IntGdiAcquireSemaphore ( HSEMAPHORE hsem );
VOID FASTCALL IntGdiReleaseSemaphore ( HSEMAPHORE hsem );
ULONGLONG APIENTRY EngGetTickCount(VOID);
#endif /* _WIN32K_ENG_H */

View file

@ -2971,8 +2971,7 @@ ULONGLONG
APIENTRY
EngGetTickCount(VOID)
{
UNIMPLEMENTED;
return 0;
return ((ULONGLONG)SharedUserData->TickCountLowDeprecated * SharedUserData->TickCountMultiplier / 16777216);
}
BOOLEAN