Skip to content
Snippets Groups Projects
Commit 973cc740 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard
Browse files

"implemented" GetSystemTimeAdjustment.

parent 2f245af0
No related branches found
No related tags found
No related merge requests found
......@@ -423,7 +423,7 @@ import ntdll.dll
404 stdcall GetSystemInfo(ptr) GetSystemInfo
405 stdcall GetSystemPowerStatus(ptr) GetSystemPowerStatus
406 stdcall GetSystemTime(ptr) GetSystemTime
407 stub GetSystemTimeAdjustment
407 stdcall GetSystemTimeAdjustment(ptr ptr ptr) GetSystemTimeAdjustment
408 stdcall GetSystemTimeAsFileTime(ptr) GetSystemTimeAsFileTime
409 stdcall GetTapeParameters(ptr long ptr ptr) GetTapeParameters
410 stdcall GetTapePosition(ptr long ptr ptr ptr) GetTapePosition
......
......@@ -99,6 +99,21 @@ BOOL WINAPI SetLocalTime(const SYSTEMTIME *systime)
}
/***********************************************************************
* GetSystemTimeAdjustment (KERNEL32.407)
*
*/
DWORD WINAPI GetSystemTimeAdjustment( LPDWORD lpTimeAdjustment,
LPDWORD lpTimeIncrement,
LPBOOL lpTimeAdjustmentDisabled )
{
*lpTimeAdjustment = 0;
*lpTimeIncrement = 0;
*lpTimeAdjustmentDisabled = TRUE;
return TRUE;
}
/***********************************************************************
* GetSystemTime (KERNEL32.285)
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment