Jump to content

DATESTAMP

From EDM2
Revision as of 16:46, 17 August 2017 by Martini (talk | contribs) (Created page with "Date stamp structure. == Type == USHORT year; USHORT month; USHORT day; == C Declaration Method == typedef struct == Fields == == Remarks == == Example...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 ;