mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +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;
|
||||
|
||||
// SystemTimeZoneInformation (44)
|
||||
// typedef
|
||||
typedef
|
||||
struct _SYSTEM_TIME_ZONE_INFORMATION
|
||||
{
|
||||
LONG Bias;
|
||||
WCHAR StandardName [32];
|
||||
SYSTEMTIME StandardDate;
|
||||
LONG StandardBias;
|
||||
WCHAR DaylightName [32];
|
||||
SYSTEMTIME DaylightDate;
|
||||
LONG DaylightBias;
|
||||
|
||||
} SYSTEM_TIME_ZONE_INFORMATION, * PSYSTEM_TIME_ZONE_INFORMATION;
|
||||
|
||||
|
|
Loading…
Reference in a new issue