TimeStamp

The TimeStamp structure represents a Windows FILETIME data structure. It is a 64-bit value that indicates the number of 100-nanosecond intervals since January 1, 1601.

By this means Win32 sets the date and time.

struct TimeStamp
{
    long nLow;
    long nHigh;
};

Comments