FARINT64
The FARINT64 structure is used to hold a 64 bit integer value.
typedef union
{
__int64 i64;
struct
{
DWORD LowPart;
LONG HighPart;
} Part;
} FARINT64;
See also:
typedef union
{
__int64 i64;
struct
{
DWORD LowPart;
LONG HighPart;
} Part;
} FARINT64;