| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Record describing a longint value
Source position: sysutilh.inc line 45
| type LongRec = packed record | ||
| case Integer of | ||
| 0: ( | ||
| Hi: Word; | 
 | Upper byte | 
| Lo: Word; | 
 | Lower byte | 
| ); | ||
| 1: ( | ||
| Bytes: array [0..3] of Byte; | 
 | Array of 4 bytes. | 
| ); | ||
| end; | 
LongRec can be used to extract the parts of an long Integer: the high and low word, or the 4 separate bytes as a zero-based array of bytes. Note that the meaning of High and Low parts are different on various CPUs.
| 
 | Record describing a word value. | |
| 
 | Record describing an Int64 value |