From c0a3affff0e058d4507d160fcc984dc9d4a4d473 Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 11 Oct 2002 09:37:40 +0000 Subject: [PATCH] + Fixed getlocaltime incompatibility (bug 2075) --- rtl/win32/wininc/func.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rtl/win32/wininc/func.inc b/rtl/win32/wininc/func.inc index 27ef63bb49..651450f3cd 100644 --- a/rtl/win32/wininc/func.inc +++ b/rtl/win32/wininc/func.inc @@ -238,6 +238,7 @@ procedure GetSystemTime(lpSystemTime:LPSYSTEMTIME); external 'kernel32' name 'Ge procedure GetSystemTime(var lpSystemTime:SYSTEMTIME); external 'kernel32' name 'GetSystemTime'; function SetSystemTime(var lpSystemTime:SYSTEMTIME):WINBOOL; external 'kernel32' name 'SetSystemTime'; procedure GetLocalTime(lpSystemTime:LPSYSTEMTIME); external 'kernel32' name 'GetLocalTime'; +procedure GetLocalTime(var SystemTime: SYSTEMTIME); external 'kernel32' name 'GetLocalTime'; function SetLocalTime(var lpSystemTime:SYSTEMTIME):WINBOOL; external 'kernel32' name 'SetLocalTime'; procedure GetSystemInfo(lpSystemInfo:LPSYSTEM_INFO); external 'kernel32' name 'GetSystemInfo'; procedure GetSystemInfo(var SystemInfo:SYSTEM_INFO); external 'kernel32' name 'GetSystemInfo'; @@ -2301,7 +2302,10 @@ end; { $Log$ - Revision 1.12 2002-10-02 19:30:52 florian + Revision 1.13 2002-10-11 09:37:40 michael + + Fixed getlocaltime incompatibility (bug 2075) + + Revision 1.12 2002/10/02 19:30:52 florian + GetSystemTime with var parameter added Revision 1.11 2002/09/26 10:38:10 florian