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.: ..." |
(No difference)
|
Revision as of 17:52, 25 May 2024
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.