This union provides a 64-bit data type which is accessible as two DWORDs or as a single DWORDLONG.
At a Glance
Header file: | Wtype.h |
Windows CE versions: | 1.0 and later |
Syntax
typedef struct ULARGE_INTEGER {
ULONGLONG QuadPart;
} ULARGE_INTEGER;
Members
LowPart
Specifies the low-order 32 bits.
HighPart
Specifies the high-order 32 bits.
QuadPart
Specifies a 64-bit unsigned integer.
Remarks
The ULARGE_INTEGER structure is actually a union. If your compiler has built-in support for 64-bit integers, use the QuadPart member to store the 64-bit integer. Otherwise, use the LowPart and HighPart members to store the 64-bit integer.