2

I want to display list of functions one can access in DLL. How can I do that? I read about DbgHelp but don't know how to do it.

(It's a code request not a program that does it).

caccolona
  • 37
  • 1
  • 8
  • Your best bet would be to reverse engineer [dumpbin.exe](http://msdn.microsoft.com/en-us/library/c1h23y6c%28v=vs.90%29.aspx) that's shipped with Visual Studio. – devnull Jul 09 '13 at 14:51
  • @devnull Why do that when the PE format is documented and there are APIs that parse it? – David Heffernan Jul 09 '13 at 14:52
  • @DavidHeffernan This one needed to be closed first for this reason: Questions must **demonstrate a minimal understanding of the problem being solved**. – devnull Jul 09 '13 at 14:53
  • 1
    @devnull That seems impolite and needlessly aggressive to me. – David Heffernan Jul 09 '13 at 14:54
  • @DavidHeffernan I'm not sure what led you to think that I was being impolite/aggressive. That was not the intent, for sure. – devnull Jul 09 '13 at 15:57

1 Answers1

1

Call the following command with the system function and catch the result

dumpbin /exports "C:....path to your DLL...."

alexbuisson
  • 7,699
  • 3
  • 31
  • 44