Commit e665eba1 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Get rid of GetCurrentTime16().

parent 9abd5530
......@@ -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
......
......@@ -2432,17 +2432,6 @@ WORD WINAPI RegisterWindowMessageW( LPCWSTR str )
/***********************************************************************
* GetCurrentTime (USER.15)
*
* (effectively identical to GetTickCount)
*/
DWORD WINAPI GetCurrentTime16(void)
{
return GetTickCount();
}
/***********************************************************************
* InSendMessage (USER.192)
*/
BOOL16 WINAPI InSendMessage16(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment