SYSTEMTIME type replaced by TIME.

svn path=/trunk/; revision=1520
This commit is contained in:
Emanuele Aliberti 2001-01-14 20:56:48 +00:00
parent a04660d2b0
commit db38d666da

View file

@ -720,13 +720,13 @@ struct _SYSTEM_DRIVER_LOAD
typedef typedef
struct _SYSTEM_TIME_ZONE_INFORMATION struct _SYSTEM_TIME_ZONE_INFORMATION
{ {
LONG Bias; LONG Bias;
WCHAR StandardName [32]; WCHAR StandardName [32];
SYSTEMTIME StandardDate; TIME StandardDate;
LONG StandardBias; LONG StandardBias;
WCHAR DaylightName [32]; WCHAR DaylightName [32];
SYSTEMTIME DaylightDate; TIME DaylightDate;
LONG DaylightBias; LONG DaylightBias;
} SYSTEM_TIME_ZONE_INFORMATION, * PSYSTEM_TIME_ZONE_INFORMATION; } SYSTEM_TIME_ZONE_INFORMATION, * PSYSTEM_TIME_ZONE_INFORMATION;