mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
SYSTEM_TIME_ZONE_INFORMATION added.
svn path=/trunk/; revision=1518
This commit is contained in:
parent
4a354f1128
commit
01531797b4
1 changed files with 4 additions and 1 deletions
|
@ -717,13 +717,16 @@ struct _SYSTEM_DRIVER_LOAD
|
||||||
} SYSTEM_DRIVER_LOAD, *PSYSTEM_DRIVER_LOAD;
|
} SYSTEM_DRIVER_LOAD, *PSYSTEM_DRIVER_LOAD;
|
||||||
|
|
||||||
// SystemTimeZoneInformation (44)
|
// SystemTimeZoneInformation (44)
|
||||||
// typedef
|
typedef
|
||||||
struct _SYSTEM_TIME_ZONE_INFORMATION
|
struct _SYSTEM_TIME_ZONE_INFORMATION
|
||||||
{
|
{
|
||||||
LONG Bias;
|
LONG Bias;
|
||||||
WCHAR StandardName [32];
|
WCHAR StandardName [32];
|
||||||
SYSTEMTIME StandardDate;
|
SYSTEMTIME StandardDate;
|
||||||
LONG StandardBias;
|
LONG StandardBias;
|
||||||
|
WCHAR DaylightName [32];
|
||||||
|
SYSTEMTIME DaylightDate;
|
||||||
|
LONG DaylightBias;
|
||||||
|
|
||||||
} SYSTEM_TIME_ZONE_INFORMATION, * PSYSTEM_TIME_ZONE_INFORMATION;
|
} SYSTEM_TIME_ZONE_INFORMATION, * PSYSTEM_TIME_ZONE_INFORMATION;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue