Specifications

Error! Style not defined. 791
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 791 of 107 Printed: 10/09/00 02:49 PM
L2048 Microsoft Overlay Manager module not found
Overlays were designated, but an overlay manager was missing.
By default, the overlay manager is the Microsoft Overlay Virtual Environment (MOVE).
This is provided in MOVE.LIB, which is a component library of the default combined
libraries provided with Microsoft C/C++ version 7.0. The error occurs when LINK
cannot find the _moveinit routine.
If the /OLDOVERLAY option is specified, the overlay manager is the Microsoft Static
Overlay Manager, which is also provided in the default combined libraries.
L2050 USE16/USE32 attribute conflictsegment segment in group group
You cannot group 16-bit segments with 32-bit segments.
L2052 symbol : unresolved external; possible calling convention mismatch
A symbol was declared to be external in one or more modules, but LINK could not find
it publicly defined in any module or library.
The name of the unresolved external symbol is given, followed by a list of object
modules that contain references to this symbol. The error message and the list of object
modules are written to the map file, if one exists.
This error occurs in a C-language program when a prototype for an externally defined
function is omitted and the program is compiled with CL’s /Gr option. The calling
convention for _ _fastcall does not match the assumptions that are made when a
prototype is not included for an external function.
Either include a prototype for the function, or compile without the /Gr option.
L2057 duplicate of function with different size found; record ignored
An inconsistent class definition was found.
Check the include files and recompile.
L2058 different duplicate of function found; record ignored
An inconsistent class definition was found.
Check the include files and recompile.
L2060 size of data block associated with symbol (16-bit segment) exceeds 64K
A class had too many virtual functions. The given symbol is the v-table for the class, in
the form of a decorated name.
L2061 no space for data block associated with function inside segment segment
The given function was allocated to the given segment, but the segment was full.