Important: The information in this document is obsolete and should not be used for new development.
LongMul
You can use theLongMul
procedure to multiply two 32-bit quantities and obtain a 64-bit quantity.
Procedure LongMul (a, b: LongInt; VAR result: Int64Bit);
a
- The first operand, which is a variable of type
LongInt
.b
- The second operand, which is a variable of type
LongInt
.result
- A pointer to the returned value.
DESCRIPTION
Given two variables of typeLongInt
, theLongMul
procedure multiplies the two variables specified in parametera
andb
, and returns the value in the variable specified by theresult
parameter.