_get_daylight
Retrieves the daylight saving time offset in hours.
error_t _get_daylight(
int* hours
);
Parameters
- hours
-
The offset in hours of daylight saving time.
The _get_daylight function retrieves the number of hours in daylight saving time as an integer. If daylight saving time is in effect, the default offset is one hour (although a few regions do observe a two-hour offset).
If hours is NULL, the invalid parameter handler is invoked as described in Parameter Validation. If execution is allowed to continue, this function sets errno to EINVAL and returns EINVAL.
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.
| Routine | Required header | Compatibility |
|---|---|---|
| _get_daylight | <time.h> | Windows 95, Windows 98, Windows 98 Second Edition, Windows Millennium Edition, Windows NT 4.0, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 |
For more information, see Compatibility.