Added SetSystemTimeAdjustment stub.

This commit is contained in:
Lionel Ulmer 2003-05-04 02:23:38 +00:00 committed by Alexandre Julliard
parent 6da201fddf
commit 12c61661ab
2 changed files with 19 additions and 1 deletions

View File

@ -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)

View File

@ -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.@)