Commit 12c61661 authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard

Added SetSystemTimeAdjustment stub.

parent 6da201fd
...@@ -781,7 +781,7 @@ ...@@ -781,7 +781,7 @@
@ stdcall SetStdHandle(long long) @ stdcall SetStdHandle(long long)
@ stdcall SetSystemPowerState(long long) @ stdcall SetSystemPowerState(long long)
@ stdcall SetSystemTime(ptr) @ stdcall SetSystemTime(ptr)
@ stub SetSystemTimeAdjustment @ stdcall SetSystemTimeAdjustment(long long)
@ stdcall SetTapeParameters(ptr long ptr) @ stdcall SetTapeParameters(ptr long ptr)
@ stdcall SetTapePosition(ptr long long long long long) @ stdcall SetTapePosition(ptr long long long long long)
@ stdcall SetThreadAffinityMask(long long) @ stdcall SetThreadAffinityMask(long long)
......
...@@ -126,6 +126,24 @@ BOOL WINAPI SetSystemTime( ...@@ -126,6 +126,24 @@ BOOL WINAPI SetSystemTime(
return !status; return !status;
} }
/***********************************************************************
* SetSystemTimeAdjustment (KERNEL32.@)
*
* Enables or disables the timing adjustments to the system's clock.
*
* RETURNS
* Success: TRUE.
* Failure: FALSE.
*/
BOOL WINAPI SetSystemTimeAdjustment(
DWORD dwTimeAdjustment,
BOOL bTimeAdjustmentDisabled)
{
/* Fake function for now... */
FIXME("(%08lx,%d): stub !\n", dwTimeAdjustment, bTimeAdjustmentDisabled);
return TRUE;
}
/*********************************************************************** /***********************************************************************
* GetTimeZoneInformation (KERNEL32.@) * GetTimeZoneInformation (KERNEL32.@)
......
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