Jump to content

DATESTAMP: Difference between revisions

From EDM2
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 ;