The information in this article applies to:
SYMPTOMSWhen linking a debug version of your application, you may get the following warning message: NOTE: You will not be able to see the subsequent types in the debugger. CAUSEThe number of type indexes in the Program Database File (.pdb file) for your project exceeded 64K for Visual C++ 4.x and 16M for later versions. This is a limitation of the debugging format in a .pdb file. The format uses a 16-bit field to store the number of types. This field was increased to 24 bits in Visual C++ 5.0. RESOLUTION
To avoid this warning, use one or more of the following methods to decrease
the number of type indexes in your .pdb file:
STATUSThis behavior is by design. MORE INFORMATION
You can review each object module to determine how many symbols it contains
by using dumpbin /headers <file>.obj. The first section in the output tells how many symbols the object module contains.
Additional query words: symbol missing cannot debug
Keywords : kbusage kbVC400 kbVC410 kbVC420 kbVC500 kbVC600 LinkIss |
Last Reviewed: July 14, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |