OWordRec
Identical to the Int128Rec record.
Declaration
Source position: sysutilh.inc line 86
Type
OWordRec = packed record
case Integer of
0: (
public
  Lo : QWord;
  Hi : QWord;
);
1: (
public
  DWords : Array[0..3] of DWord;
);
2: (
public
  Words : Array[0..7] of Word;
);
3: (
public
  Bytes : Array[0..15] of Byte;
);
end
Description
OWordRec is a record defining a 128-bit integer. It is made up of 2 QWords or 4 DWords or 8 words or 16 bytes.
See also
| Name | Description | 
|---|---|
| Int128Rec | Record representing a 128-bit unsigned integer. | 
| LongRec | Record describing a longint value | 
| WordRec | Record describing a word value. |