Added SetSystemTimeAdjustment stub.
This commit is contained in:
parent
6da201fddf
commit
12c61661ab
|
@ -781,7 +781,7 @@
|
|||
@ stdcall SetStdHandle(long long)
|
||||
@ stdcall SetSystemPowerState(long long)
|
||||
@ stdcall SetSystemTime(ptr)
|
||||
@ stub SetSystemTimeAdjustment
|
||||
@ stdcall SetSystemTimeAdjustment(long long)
|
||||
@ stdcall SetTapeParameters(ptr long ptr)
|
||||
@ stdcall SetTapePosition(ptr long long long long long)
|
||||
@ stdcall SetThreadAffinityMask(long long)
|
||||
|
|
|
@ -126,6 +126,24 @@ BOOL WINAPI SetSystemTime(
|
|||
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.@)
|
||||
|
|
Loading…
Reference in New Issue