CDATE: Difference between revisions
Appearance
Created page with "Structure that contains date information for a data element in the details view of a container control. typedef struct _CDATE { UCHAR day; →Current day.: ..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
Structure that contains date information for a data element in the details view of a container control. | Structure that contains date information for a data element in the details view of a container control. | ||
typedef struct _CDATE { | typedef struct _CDATE { | ||
UCHAR day; /* | UCHAR day; /* Current day. */ | ||
UCHAR month; /* | UCHAR month; /* Current month. */ | ||
USHORT year; /* | USHORT year; /* Current year. */ | ||
} CDATE; | } CDATE; | ||
typedef CDATE * PCDATE ; | typedef CDATE * PCDATE ; | ||
==Fields== | ==Fields== | ||
;day (UCHAR):Current day. | |||
;day (UCHAR) | ;month (UCHAR):Current month. | ||
:Current day. | ;year (USHORT):Current year. | ||
;month (UCHAR) | |||
:Current month. | |||
;year (USHORT) | |||
:Current year. | |||
[[Category: Data type]] | [[Category: Data type]] |
Latest revision as of 12:52, 2 April 2025
Structure that contains date information for a data element in the details view of a container control.
typedef struct _CDATE { UCHAR day; /* Current day. */ UCHAR month; /* Current month. */ USHORT year; /* Current year. */ } CDATE; typedef CDATE * PCDATE ;
Fields
- day (UCHAR)
- Current day.
- month (UCHAR)
- Current month.
- year (USHORT)
- Current year.