Important: The information in this document is obsolete and should not be used for new development.
64-Bit Integer Record
By using theLongMul
procedure, you can multiply two 32-bit quantities and obtain a 64-bit quantity stored in a 64-bit integer record. TheInt64Bit
data type defines a 64-bit integer record.
TYPE Int64Bit = RECORD hiLong: LongInt; loLong: LongInt; END;
Field Description
hiLong
- The high-order long integer of the 64-bit integer.
loLong
- The low-order long integer of the 64-bit integer.