Specifications

Error! Style not defined. 741
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 741 of 57 Printed: 10/09/00 02:49 PM
HI2157 function : must be declared before use in pragma list
The function name in the list of functions for an alloc_text pragma has not been
declared prior to being referenced in the list.
HI2158 identifier : is a function
The given identifier was specified in the list of variables in a same_seg pragma but was
previously declared as a function.
HI2159 more than one storage class specified
A declaration contained more than one storage class, as in
extern static int i;
HI2160 ## cannot occur at the beginning of a macro definition
A macro definition began with a token-pasting operator (##), as in
#define mac(a,b) ##a
HI2161 ## cannot occur at the end of a macro definition
A macro definition ended with a token-pasting operator (##), as in
#define mac(a,b) a##
HI2162 expected macro formal parameter
The token following a stringizing operator (#) was not a formal-parameter name.
For example:
#define print(a) printf(#b)
HI2165 keyword : cannot modify pointers to data
The _fortran, _pascal, _cdecl, or _fastcall keyword was used illegally to modify a
pointer to data, as in the following example:
char _pascal *p;
HI2166 lvalue specifies const object
An attempt was made to modify an item declared with const type.
HI2167 function : too many actual parameters for intrinsic function
A reference to the intrinsic function name contained too many actual parameters.
HI2168 function : too few actual parameters for intrinsic function
A reference to the intrinsic function name contained too few actual parameters.