Get rid of GetCurrentTime16().

oldstable
Andreas Mohr 2001-05-24 18:43:55 +00:00 committed by Alexandre Julliard
parent 9abd5530c8
commit e665eba1b7
2 changed files with 2 additions and 12 deletions

View File

@ -17,7 +17,8 @@ rsrc resources/version16.res
12 pascal16 KillTimer(word word) KillTimer16
13 pascal GetTickCount() GetTickCount
14 pascal GetTimerResolution() GetTimerResolution16
15 pascal GetCurrentTime() GetCurrentTime16
# GetCurrentTime is effectively identical to GetTickCount
15 pascal GetCurrentTime() GetTickCount
16 pascal16 ClipCursor(ptr) ClipCursor16
17 pascal16 GetCursorPos(ptr) GetCursorPos16
18 pascal16 SetCapture(word) SetCapture16

View File

@ -2431,17 +2431,6 @@ WORD WINAPI RegisterWindowMessageW( LPCWSTR str )
}
/***********************************************************************
* GetCurrentTime (USER.15)
*
* (effectively identical to GetTickCount)
*/
DWORD WINAPI GetCurrentTime16(void)
{
return GetTickCount();
}
/***********************************************************************
* InSendMessage (USER.192)
*/