Contains the date and time information that conforms to the ISO/IEC-13346 (section 7.3) standard for date and time.
typedef struct
{
UINT16 typeAndTimeZone;
INT16 year;
UINT8 month;
UINT8 day;
UINT8 hour;
UINT8 minute;
UINT8 second;
UINT8 centiSecond;
UINT8 hundredsOfMicroseconds;
UINT8 microSeconds;
UINT32 reserved;
} ECMATime;
Specifies the type of time zone and a time zone value (see Time Zone Values).
Specifies the year value (1-9999).
Specifies the month value (1-12).
Specifies the day value (1-31).
Specifies the hour value (0-23).
Specifies the minute value (0-59).
Specifies the second value (0-60 for a local type and 0-59 for other types).
Specifies the hundredths of second value (0-99).
Specifies the hundreds of microsecond value (0-99).
Specifies the microsecond value (0-99).