TimeStamp

The structure TimeStamp represents a windows FILETIME data structure. It is a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601. It is the means by which Win32 determines the date and time.

struct TimeStamp
{
long nLow;
long nHigh;
};