Specifications

Error! Style not defined. 737
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 737 of 53 Printed: 10/09/00 02:49 PM
HI2092 array element type cannot be function
Arrays of functions are not allowed. Arrays of pointers to functions are allowed.
HI2095 function : actual has type void : parameter number
which argument was in error.
Formal parameters and arguments to functions cannot have type void. They can,
however, have type void * (pointer to void).
HI2100 illegal indirection
The indirection operator (*) was applied to a nonpointer value.
HI2101 '&' on constant
The address-of operator (&) did not have an lvalue as its operand.
HI2102 '&' requires lvalue
The address-of operator (&) must be applied to an lvalue expression.
HI2103 '&' on register variable
An attempt was made to take the address of a register variable.
HI2104 '&' on bit field ignored
An attempt was made to take the address of a bit field.
HI2105 operator needs lvalue
The given operator did not have an lvalue operand.
HI2106 operator : left operand must be lvalue
The left operand of the given operator was not an lvalue.
HI2107 illegal index, indirection not allowed
A subscript was applied to an expression that did not evaluate to a pointer.
HI2108 nonintegral index
A nonintegral expression was used in an array subscript.
HI2109 subscript on nonarray
A subscript was used on a variable that was not an array.
HI2110 pointer + pointer
An attempt was made to add one pointer to another using the plus (+) operator.
HI2111 pointer + nonintegral value
An attempt was made to add a nonintegral value to a pointer.
HI2112 illegal pointer subtraction
An attempt was made to subtract pointers that did not point to the same type.