GetDateTime PROC    (Not available in 16-bit library)

   Gets and saves the current local date/time as a 64-bit integer (in the Win32 FILETIME format).
   The date/time is measured in 100ns intervals since January 1, 1601.

Call args:  EDX points to receiving buffer (FILETIME STRUCT format)

Return arg: The current date/time is stored in
            the structure pointed to by EDX.

Example:

FILETIME STRUCT       ;(in SmallWin.inc)
    loDateTime DWORD ?
    hiDateTime DWORD ?
FILETIME ENDS

.data
dateTime FILETIME <>

.code
      INVOKE GetDateTime,ADDR dateTime
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)