OLD_LARGE_INTEGER structure (subauth.h)
The OLD_LARGE_INTEGER structure is used to represent a 64-bit signed integer value as two 32-bit integers.
Syntax
typedef struct _OLD_LARGE_INTEGER {
ULONG LowPart;
LONG HighPart;
} OLD_LARGE_INTEGER, *POLD_LARGE_INTEGER;
Members
LowPart
Low-order 32 bits.
HighPart
High-order 32 bits. The sign of this member determines the sign of the 64-bit integer.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Header | subauth.h |