FILETIME (Windows CE 5.0)

Send Feedback

This structure is a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601.

typedef struct _FILETIME { DWORD dwLowDateTime; DWORD dwHighDateTime; } FILETIME; 

Members

  • dwLowDateTime
    Specifies the low 32 bits of the Win32 date/time value.
  • dwHighDateTime
    Specifies the upper 32 bits of the Win32 date/time value.

Remarks

This data structure is used in the time conversion functions between MS-DOS and Win32.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Winbase.h.

See Also

Time Structures | CompareFileTime | FileTimeToLocalFileTime | FileTimeToSystemTime | GetFileTime | LocalFileTimeToFileTime | SetFileTime | SystemTimeToFileTime | Timer Driver Reference

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.