|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
SetSystemTimeAdjustment
The SetSystemTimeAdjustment function tells the system to enable or disable periodic time adjustments to
its time of day clock. Such time adjustments are used to synchronize the time of
day with some other source of time information. When periodic time adjustments
are enabled, they are applied at each clock interrupt.
BOOL SetSystemTimeAdjustment(
DWORD dwTimeAdjustment,
| // size, in 100-nanosecond units, of a periodic time adjustment
| BOOL bTimeAdjustmentDisabled
| // whether periodic time adjustment is to be disabled or enabled
| );
|
|
Parameters
dwTimeAdjustment
Specifies the number of 100-nanosecond units added to the time-of-day clock at
each clock interrupt if periodic time adjustment is enabled.
bTimeAdjustmentDisabled
Specifies the time adjustment mode that the system is to use. Periodic system
time adjustments can be disabled or enabled.
A value of TRUE specifies that periodic time adjustment is to be disabled. The
system is free to adjust time of day using its own internal mechanisms. The
value of dwTimeAdjustment is ignored. The system's internal adjustment mechanisms may cause the
time-of-day clock to jump noticeably when adjustments are made.
A value of FALSE specifies that periodic time adjustment is to be enabled, and
will be used to adjust the time-of-day clock. The system will not interfere
with the time adjustment scheme, and will not attempt to synchronize time of day
on its own. The system will add the value of dwTimeAdjustment to the time of day at each clock interrupt.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error
information, call GetLastError. One way the function can fail is if the caller does not possess the
SE_SYSTEMTIME_NAME privilege.
Remarks
The GetSystemTimeAdjustment and SetSystemTimeAdjustment functions support algorithms that synchronize the time-of-day clock, reported
via GetSystemTime and GetLocalTime, with another time source using a periodic time adjustment.
The SetSystemTimeAdjustment function supports two modes of time synchronization: time-adjustment disabled and time-adjustment enabled.
In the first mode, bTimeAdjustmentDisabled is set to FALSE. At each clock interrupt, the system adds the value of dwTimeAdjustment to the time of day. The clock interrupt rate may be determined by calling GetSystemTimeAdjustment, and looking at the returned value of the DWORD value pointed to by lpTimeIncrement.
In the second mode, bTimeAdjustmentDisabled is set to TRUE. At each clock interrupt, the system adds the interval
between clock interrupts to the time of day. No adjustment to that interval is made.
The system is free to periodically refresh the time-of-day clock using other
techniques. Such other techniques may cause the time-of-day clock to jump
noticeably when adjustments are made.
An application must have system-time privilege (the SE_SYSTEMTIME_NAME
privilege) for this function to succeed. The SE_SYSTEMTIME_NAME privilege is disabled
by default. Use the AdjustTokenPrivileges function to enable the privilege before calling SetSystemTimeAdjustment, and then to disable the privilege after the SetSystemTimeAdjustment call.
See Also
AdjustTokenPrivileges, GetSystemTimeAdjustment, SetLocalTime, SetSystemTime, SystemTimeToTzSpecificLocalTime
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|