0

Is there is any way to Expose the functions(function names) inside a .lib file.

some thing like Dependency Walker to expose the function names in a DLL file.

Johan
  • 74,508
  • 24
  • 191
  • 319
4ever
  • 49
  • 1
  • 6
  • With what purpose? If you're trying to develop against it you'll want the header file. Also, this isn't really a programming problem as you're asking for a software recommendation OR general programming questions not suited for stack overflow. – OMGtechy Mar 17 '14 at 12:52
  • 1
    http://docwiki.embarcadero.com/RADStudio/XE5/en/TDUMP.EXE,_the_File_Dumping_Utility – Hans Passant Mar 17 '14 at 13:11

1 Answers1

1

You need to mark exported functions / methods. Refer to this article for details:

http://msdn.microsoft.com/en-us/library/a90k134d.aspx

Violet Giraffe
  • 32,368
  • 48
  • 194
  • 335
  • Static libraries don't have "exported functions". `dllexport` is just for DLLs. (The article mentions static libraries, but it is talking about a library which goes with a .dll, which the caller of the DLL can link to provide early binding -- this is nothing to do with what OP is asking) – M.M May 04 '14 at 05:12