table of contents
other versions
- wheezy 1.4.1-4
GetSystemTimeAdjustment(3w) | Wine API | GetSystemTimeAdjustment(3w) |
NAME¶
GetSystemTimeAdjustment (KERNEL32.@)SYNOPSIS¶
BOOL GetSystemTimeAdjustment(
PDWORD lpTimeAdjustment,
PDWORD lpTimeIncrement,
PBOOL lpTimeAdjustmentDisabled
)
DESCRIPTION¶
Get the period between clock interrupts and the amount the clock is adjusted each interrupt so as to keep it in sync with an external source.PARAMS¶
lpTimeAdjustment [Out] The clock adjustment per interrupt in 100's of nanoseconds. lpTimeIncrement [Out] The time between clock interrupts in 100's of nanoseconds. lpTimeAdjustmentDisabled [Out] The clock synchronisation has been disabled.RETURNS¶
TRUE.BUGS¶
Only the special case of disabled time adjustments is supported.IMPLEMENTATION¶
Declared in "winbase.h". Implemented in "dlls/kernel32/time.c". Debug channel "time".Oct 2012 | Wine API |