home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 3 / Tools.exe / implib.txt < prev    next >
Text File  |  1998-02-09  |  2KB  |  44 lines

  1. IMPLIB Help
  2.  
  3. The IMPLIB utility creates import library. IMPLIB takes as input DLLs, module definition files,
  4. or both, and produces an import library as output.
  5. If you've created a Windows application, you've already used at least one import library,
  6. IMPORT32.LIB, the import library for the standard Windows DLLs. (IMPORT.LIB is linked
  7. automatically when you build a Windows application in the IDE and when using BCC32 to link.
  8. You have to explicitly link with IMPORT32.LIB only if you're using TLINK32 to link
  9. separately.)
  10.  
  11. An import library lists some or all of the exported functions for one or more DLLs. IMPLIB
  12. creates an import library directly from DLLs or from module definition files for DLLs (or a
  13. combination of the two).
  14.  
  15. Creating an Import Library for a DLL
  16.  
  17. Options must be lowercase and preceded by either a hyphen or a slash.
  18. Type:
  19.  
  20. IMPLIB Options LibName [ DefFiles... | DLLs... ] [@ResponseFile]
  21.  
  22. where Options is an optional list of one or more IMPLIB options, LibName is the name for the
  23. new import library, DefFiles is a list of one or more existing module definition files for one or
  24. more DLLs, and DLLs is a list of one or more existing DLLs. You must specify at least one DLL
  25. or module definition file.
  26. You can also use a response file to list the .DEF and .DLL files that you want to process. A
  27. response file is an ACSII text file that contains a list of files. The files must be separated by
  28. either spaces or new lines in the file. To specify a response file on the command line, precede the
  29. response filename with an "at" sign (@). For example,
  30.  
  31. implib  foo.lib  @respon.txt
  32.  
  33. Note:     A DLL can also have an extension of .EXE or .DRV, not just .DLL.
  34.  
  35. Option    Description
  36.  
  37. -c   Warnings on case sensitive symbols
  38. -f   Force imports by name
  39. -i   Tells IMPLIB to ignore WEP, the Windows exit procedure required to end a DLL. Use
  40. this option if you are specifying more than one DLL on the IMPLIB command line.
  41. -o   Remove module extensions. (16-bit Windows only)
  42. -w   No warnings.
  43.  
  44. Copyright   1998 Borland International.