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)
m Undo revision 58389 by Martini (talk) nonsense
 
(3 intermediate revisions by 2 users not shown)
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 ==
  typedef struct
  typedef struct


== 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]]

Latest revision as of 10:16, 4 August 2018

Date stamp structure

Type

USHORT   year;
USHORT   month;
USHORT   day;

C Declaration Method

typedef struct

Fields