DOC: LIBRARY Statement Documented Incorrectly

Last reviewed: October 8, 1997
Article ID: Q108293
The information in this article applies to:
  • Microsoft Visual C++ for Windows, versions 1.0, 1.5
  • Microsoft Visual C++ 32-bit Edition, version 1.0

SUMMARY

The documentation in the "Command-Line Utilities User's Guide" (hard copy and online) may be misleading with regard to the function of the LIBRARY statement in a module definition file (.DEF file). The documentation indicates that the name specified after the LIBRARY statement in a .DEF file will be used as the base name of the file that is written to disk as a result of the build process. This is not true.

The Visual C++ 2.0 documentation has the correct information for the LIBRARY statement.

MORE INFORMATION

The LIBRARY Statement only affects the module name of the dynamic-link library (DLL) being built. The Windows concept of a "module" applies to either an application (executable program) or a library. Both serve very different purposes, yet applications and libraries are both types of modules.

The effect of the LIBRARY statement on a build is most easily shown by examining the header information of the module created by running EXEHDR.EXE, giving the module name as the input file. Pay particular attention to the "Library:" and "Description:" fields, in the case of a DLL, and the "Module:" and "Description:" fields, in the case of an executable.

To see where the module name is actually used, run a utility such as HEAPWALKER.EXE. The information in the "Owner:" field is the module name of the module associated with each entry.

Keywords          : TlsMisc
Version           : WIN3X:1.0,1.5;
Issue type        : kbdocerr


================================================================================


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: October 8, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.