Share via


/IMPLIB (Windows CE 5.0)

Send Feedback

This option overrides the default name for the import library that LINK creates when it builds a program that contains exports.

/IMPLIB:filename

Remarks

The default name is formed from the base name of the main output file and the extension .lib. A program contains exports if one or more of the following are specified:

  • The __declspec(dllexport) keyword in the source code
  • An EXPORTS statement in a .def file
  • An /EXPORT specification in a LINK command

LINK ignores /IMPLIB when an import library is not being created. If no exports are specified, LINK does not create an import library.

See Also

Linker Options

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.