Jump to content

CDATE: Difference between revisions

From EDM2
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.: ..."
 
Ak120 (talk | contribs)
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;    /* Current day. */
   UCHAR      day;    /* Current day. */
   UCHAR      month;  /* Current month. */
   UCHAR      month;  /* Current month. */
   USHORT    year;  /* Current 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.