Specifications
778 LINK Error Messages
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 778 of 94 Printed: 10/09/00 02:49 PM
L1034 name truncated to string
A name specified either on the LINK command line or in a module-definition (.DEF) file
exceeded 255 characters. The name was truncated to the given string.
This is a warning, not a fatal error. However, it indicates a serious problem. This
message may be followed by another error as LINK tries to use the specified name. For
example, if the string is a filename, LINK issues an error when it cannot open the file.
L1035 syntax error in module-definition file
A statement in the module-definition (.DEF) file was incorrect.
L1040 too many exported entries
The program exceeded the limit of 65,535 exported names.
L1041 resident names table overflow
The size of the resident names table exceeded 65,535 bytes.
An entry in the resident names table is made for each exported routine designated
RESIDENTNAME and consists of the name plus three bytes of information. The first
entry is the module name.
Reduce the number of exported routines or change some to nonresident status.
L1042 nonresident names table overflow
The size of the nonresident names table exceeded 65,535 bytes.
An entry in the nonresident names table is made for each exported routine not designated
RESIDENTNAME and consists of the name plus three bytes of information. The first
entry is the DESCRIPTION statement.
Reduce the number of exported routines or change some to resident status.
L1043 relocation table overflow
More than 32,768 long calls, long jumps, or other long pointers appeared in the program.
Replace long references with short references wherever possible.
L1044 imported names table overflow
The size of the imported names table exceeds 65,535 bytes.
An entry in the imported names table is made for each new name given in the IMPORTS
section, including the module names, and consists of the name plus one byte.
Reduce the number of imports.