DATESTAMP: Difference between revisions
Appearance
Created page with "Date stamp structure. == Type == USHORT year; USHORT month; USHORT day; == C Declaration Method == typedef struct == Fields == == Remarks == == Example..." |
(No difference)
|
Revision as of 15:46, 17 August 2017
Date stamp structure.
Type
USHORT year; USHORT month; USHORT day;
C Declaration Method
typedef struct
Fields
Remarks
Example Code
typedef struct _DATESTAMP {
USHORT year;
USHORT month;
USHORT day;
} DATESTAMP;
typedef DATESTAMP * PDATESTAMP ;