Jump to content

FDATE: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
== FDATE ==
Date data structure for file-system functions.
 
Date data structure for file-system functions.  


=== Type ===  
=== Type ===  
 
  [[USHORT]]  day:5
  [[OS2 API:DataType:USHORT|USHORT]]  day:5
  USHORT  month:4
  [[OS2 API:DataType:USHORT|USHORT]] month:4
  USHORT  year:7
  [[OS2 API:DataType:USHORT|USHORT]] year:7


==== C Declaration Method ====
==== C Declaration Method ====
typedef struct
typedef struct


=== Fields ===
=== Fields ===
 
*day:5 Binary day for directory entry.
day:5   Binary day for directory entry.
*month:4 - Binary month for directory entry.
month:4 Binary month for directory entry.
*year:7 - The number of years since 1980 for this directory entry.
year:7 The number of years since 1980 for this directory entry.
 
[[OS2_API | Back to OS/2 API]]
 


[[Category:The OS/2 API Project]]
[[Category:Data type]]

Latest revision as of 23:14, 7 September 2018

Date data structure for file-system functions.

Type

USHORT  day:5
USHORT  month:4
USHORT  year:7

C Declaration Method

typedef struct

Fields

  • day:5 - Binary day for directory entry.
  • month:4 - Binary month for directory entry.
  • year:7 - The number of years since 1980 for this directory entry.