IMPLIB takes as input either DLLs or module definition files, or both, and produces an import library as output.
If you've created a Windows application, you've already used IMPORT32.LIB, the import library for the standard Windows DLLs. IMPORT32.LIB is linked automatically when you build a Win32 application in the C++Builder IDE and when using BCC32 at the command line.
An import library lists some or all of the exported functions for one or more DLLs. IMPLIB creates an import library directly from DLLs or from module definition files for DLLs (or a combination of the two).
IMPLIB <options> <LibName> [< DefFiles>... | <DLLs>... ] [@<ResponseFile> | <sourcename> ] [<sourcename> ...]
To display command line help, enter:
implib
Command Line Element |
Description |
<options> |
An optional list of one or more of the following IMPLIB command options:
|
<LibName> |
The name for the new import library. |
<DefFiles> |
One or more existing module definition files for one or more DLLs. You must specify at least one DLL or module definition file. |
<DLLs> |
One or more existing DLLs. You must specify at least one DLL or one module definition file. |
@<ResponseFile> |
An ACSII text file that contains a list of DEF and DLL files that you want to process using IMPLIB. In the response file, separate the filenames using either spaces or new lines. |
<sourcename> |
Either a DEF or DLL file that is to be processed by IMPLIB. |
Example
implib foo.lib @respon.txt
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|