Add32

Adds two 32-bit integer quantities together.

Synopsis

int32 Add32( int32 x, int32 y )

Description

This macro adds two 32-bit numbers together and returns the result. The macro is included for completeness.

The macro is actually defined as simple addition of its arguments, and does not check for or enforce any typecast requirements.

Arguments

x, y 32-bit integers.

Return Value

The macro returns the sum of its arguments.

Implementation

Macro implemented in operamath.h V20.

Associated Files

operamath.h

See Also

AddF16(), AddF14(), AddF30()