Date and time data structure.
typedef struct _DATETIME {
UCHAR hours; /* Current hour, using values 0 through 23. */
UCHAR minutes; /* Current minute, using values 0 through 59. */
UCHAR seconds; /* Current second, using values 0 through 59. */
UCHAR hundredths; /* Current hundredths of a second, using values 0 through 99. */
UCHAR day; /* Current day of the month, using values 1 through 31. */
UCHAR month; /* Current month of the year, using values 1 through 12. */
USHORT year; /* Current year. */
SHORT timezone; /* The difference in minutes between the current time zone and Greenwich Mean Time (GMT). */
UCHAR weekday; /* Current day of the week, using values 0 through 6. */
} DATETIME;
typedef DATETIME * PDATETIME ;