mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 09:43:04 +00:00
- Implement EngGetTickCount.
svn path=/trunk/; revision=34996
This commit is contained in:
parent
6e81d0c92b
commit
55f1b15382
2 changed files with 2 additions and 2 deletions
|
@ -22,5 +22,6 @@ IntEngWindowChanged(
|
||||||
|
|
||||||
VOID FASTCALL IntGdiAcquireSemaphore ( HSEMAPHORE hsem );
|
VOID FASTCALL IntGdiAcquireSemaphore ( HSEMAPHORE hsem );
|
||||||
VOID FASTCALL IntGdiReleaseSemaphore ( HSEMAPHORE hsem );
|
VOID FASTCALL IntGdiReleaseSemaphore ( HSEMAPHORE hsem );
|
||||||
|
ULONGLONG APIENTRY EngGetTickCount(VOID);
|
||||||
|
|
||||||
#endif /* _WIN32K_ENG_H */
|
#endif /* _WIN32K_ENG_H */
|
||||||
|
|
|
@ -2971,8 +2971,7 @@ ULONGLONG
|
||||||
APIENTRY
|
APIENTRY
|
||||||
EngGetTickCount(VOID)
|
EngGetTickCount(VOID)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
return ((ULONGLONG)SharedUserData->TickCountLowDeprecated * SharedUserData->TickCountMultiplier / 16777216);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue