Int64Rec
Record describing an Int64 value
Declaration
Source position: sysutilh.inc line 63
Type
Int64Rec = packed record
case Integer of
0: (
public
Lo : Cardinal;
Hi : Cardinal;
);
1: (
public
Words : Array[0..3] of Word;
);
2: (
public
Bytes : Array[0..7] of Byte;
);
end
Description
Int64Rec can be used to extract the parts of a Int64: the high and low cardinal, or a zero-based array of 4 words, or a zero based array of 8 bytes. Note that the meaning of the High and Low parts are different on various CPUs.
See also
Name | Description |
---|---|
LongRec | Record describing a longint value |
WordRec | Record describing a word value. |