Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Operating System Utilities /
Chapter 3 - Mathematical and Logical Utilities / Mathematical and Logical Utilities Reference
Data Structures


64-Bit Integer Record

By using the LongMul procedure, you can multiply two 32-bit quantities and obtain a 64-bit quantity stored in a 64-bit integer record. The Int64Bit 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.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
6 JUL 1996