typedef struct tagNITFDATE{L_UCHAR CC[2];L_UCHAR YY[2];L_UCHAR MM[2];L_UCHAR DD[2];} NITFDATE, * pNITFDATE;
The NITFDATE structure provides information about the date.
Member |
Description |
CC |
Value that represents the first two digits of the year. Valid values are range from 00 to 99. |
YY |
Value that represents the last two digits of the year. Valid values are range from 00 to 99. |
MM |
Value that represents the month. Valid values are range from 01 to 12. |
DD |
Value that represents the day. Valid values are range from 0 to 31. |