2.5.2.1 FILETIME


Name

FILETIME

Description

Declaration

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

Members

dwLowDateTime
Specifies the low-order 32 bits of the file time.
dwHighDateTime
Specifies the high-order 32 bits of the file time.

Remark

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

Examples

Header to Include

origin.h

See Also

Reference