get rid of GetCurrentTime16()

Andreas Mohr a.mohr at mailto.de
Thu May 24 11:12:49 CDT 2001


Hi all,

removing bloat is a good thing...
(not to mention speed reasons)

Andreas Mohr
-------------- next part --------------
Determining best CVS host...
Using CVSROOT :pserver:cvs at rhlx01.fht-esslingen.de:/home/wine
Index: dlls/user/user.spec
===================================================================
RCS file: /home/wine/wine/dlls/user/user.spec,v
retrieving revision 1.19
diff -u -r1.19 user.spec
--- dlls/user/user.spec	2001/03/28 01:47:28	1.19
+++ dlls/user/user.spec	2001/05/24 14:11:15
@@ -17,7 +17,8 @@
 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
Index: windows/message.c
===================================================================
RCS file: /home/wine/wine/windows/message.c,v
retrieving revision 1.106
diff -u -r1.106 message.c
--- windows/message.c	2001/05/22 19:55:20	1.106
+++ windows/message.c	2001/05/24 14:11:16
@@ -2432,17 +2432,6 @@
 
 
 /***********************************************************************
- *		GetCurrentTime (USER.15)
- *
- * (effectively identical to GetTickCount)
- */
-DWORD WINAPI GetCurrentTime16(void)
-{
-    return GetTickCount();
-}
-
-
-/***********************************************************************
  *		InSendMessage (USER.192)
  */
 BOOL16 WINAPI InSendMessage16(void)


More information about the wine-patches mailing list