Specifications
Error! Style not defined. 739
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 739 of 55 Printed: 10/09/00 02:49 PM
HI2132 syntax error : unexpected identifier
An identifier appeared in a syntactically illegal context.
HI2133 identifier : unknown size
An attempt was made to declare an unsized array as a local variable.
HI2134 identifier : struct/union too large
The size of a structure or union exceeded the 64K compiler limit.
HI2136 function : prototype must have parameter types
A function prototype declarator had formal-parameter names, but no types were
provided for the parameters.
A formal parameter in a function pro
totype must either have a type or be represented by
an ellipsis (...) to indicate a variable number of arguments and no type checking.
One cause of this error is a misspelling of a type name in a prototype that does not
provide the names of formal parameters.
HI2137 empty character constant
The illegal empty-character constant ('') was used.
HI2139 type following identifier is illegal
Two types were used in the same declaration.
For example:
int double a;
HI2141 value out of range for enum constant
An enumeration constant had a value outside the range of values allowed for type int.
HI2143 syntax error : missing token1 before token2
The compiler expected token1 to appear before token2.
This message may appear if a required closing brace (}), right parenthesis ()), or
semicolon (;) is missing.
HI2144 syntax error : missing token before type type
The compiler expected the given token to appear before the given type name.
This message may appear if a required closing brace (}), right parenthesis ()), or
semicolon (;) is missing.
HI2145 syntax error : missing token before identifier
The compiler expected the given token to appear before an identifier.
This message may appear if a semicolon (;) does not appear after the last declaration of
a block.