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..."
 
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
Date stamp structure.
Date stamp structure


== Type ==
== Type ==
  USHORT     year;
  [[USHORT]]  year;
  USHORT     month;
  USHORT   month;
  USHORT     day;
  USHORT   day;
    
    
== C Declaration Method ==
== C Declaration Method ==
Line 10: Line 10:


== Fields ==
== Fields ==
== Remarks ==
== Example Code ==
<PRE>
typedef struct _DATESTAMP {
  USHORT    year;
  USHORT    month;
  USHORT    day;
} DATESTAMP;
typedef  DATESTAMP  * PDATESTAMP ;
</PRE>


[[Category:Data type]]
[[Category:Data type]]

Revision as of 11:01, 18 August 2017

Date stamp structure

Type

USHORT   year;
USHORT   month;
USHORT   day;
  

C Declaration Method

typedef struct

Fields