FILETIME Structure

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at FILETIME Structure.

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

Syntax

typedef struct _FILETIME {  
    DWORD dwLowDateTime;   /* low 32 bits */  
    DWORD dwHighDateTime;  /* high 32 bits */  
} FILETIME, *PFILETIME, *LPFILETIME;  

Parameters

dwLowDateTime
Specifies the low 32 bits of the file time.

dwHighDateTime
Specifies the high 32 bits of the file time.

Requirements

Header: windef.h

See Also

Structures, Styles, Callbacks, and Message Maps
CTime::CTime