EuroAssembler Index Manual Download Source Macros


Sitemap Links Forum Tests Projects

winstime.htm
Constants
Structures
FILETIME
SYSTEMTIME

This file can be included to program for Windows written in EuroAssembler.

It declares the most often used constant symbols and structures used for
time and date functions of MS Windows Application Programming Interface (WinAPI),
as they were derived from header files in [WindowsSDK].

winstime HEAD
↑ FILETIME
The FILETIME structure is a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601.
FILETIME STRUC
dwLowDateTime  D DWORD
dwHighDateTime D DWORD
  ENDSTRUC FILETIME
↑ SYSTEMTIME
Calendary date and time.
SYSTEMTIME STRUC
.wYear                D WORD
.wMonth               D WORD
.wDayOfWeek           D WORD
.wDay                 D WORD
.wHour                D WORD
.wMinute              D WORD
.wSecond              D WORD
.wMilliseconds        D WORD
 ENDSTRUC SYSTEMTIME
↑ Constants
Encoding of constant symbols used in WinAPI.

 ENDHEAD winstime

▲Back to the top▲