ECMATime

Contains the date and time information that conforms to the ISO/IEC-13346 (section 7.3) standard for date and time.

Syntax

  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;
  

Fields

typeAndTimeZone

Specifies the type of time zone and a time zone value (see Time Zone Values).

year

Specifies the year value (1-9999).

month

Specifies the month value (1-12).

day

Specifies the day value (1-31).

hour

Specifies the hour value (0-23).

minute

Specifies the minute value (0-59).

second

Specifies the second value (0-60 for a local type and 0-59 for other types).

centiSecond

Specifies the hundredths of second value (0-99).

hundredsOfMicroseconds

Specifies the hundreds of microsecond value (0-99).

microSeconds

Specifies the microsecond value (0-99).