Specifications

744 H2INC Error Messages
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 744 of 60 Printed: 10/09/00 02:49 PM
HI2208 no members defined using this type
An enum, struct, or union was defined without any members. This is an error only
when compiling with /Za; otherwise, it is a warning.
HI2209 type cast in _based construct must be (_segment)
The only type allowed within a cast in a _based declarator is (_segment).
HI2210 identifier : must be near/far data pointer
The base in a _based declarator must not be an array, a function, or a _based pointer.
HI2211 (_segment) applied to function identifier function
The item cast in a _based declarator must not be a function.
HI2212 identifier : _based not available for functions/pointers to functions
Functions cannot be _based-allocated. Use the alloc_text pragma.
HI2213 identifier : illegal argument to _based
A symbol used as a base must have type _segment or be a near or far pointer.
HI2214 pointers based on void require the use of :>
A _based pointer based on void cannot be dereferenced. Use the :> operator to create
an address that can be dereferenced.
HI2215 :> operator only for objects based on void
The right operand of the :> operator must be a pointer based on void, as in
char _based(void) *cbvpi
HI2216 attribute1 may not be used with attribute2
The given function attributes are incompatible.
Some combinations of attributes that cause this error are
u _saveregs and _interrupt
u _fastcall and _saveregs
u _fastcall and _interrupt
u _fastcall and _export