[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Record describing an Int64 value
Source position: sysutilh.inc line 47
type Int64Rec = packed record |
case Integer of |
0: ( |
Lo: Cardinal; |
Hi: Cardinal; |
); |
1: ( |
Words: array [0..3] of Word; |
); |
2: ( |
Bytes: array [0..7] of Byte; |
); |
end; |
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.
|
Record describing a longint value |
|
|
Record describing a word value. |