Is there a way to find all the functions exposed by a dll

minty picture minty · Jan 13, 2009 · Viewed 78.4k times · Source

I've been searching for a way to get all the strings that map to function names in a dll.

I mean by this all the strings for which you can call GetProcAddress. If you do a hex dump of a dll the symbols (strings) are there but I figure there must me a system call to acquire those names.

Answer

Die in Sente picture Die in Sente · Jan 13, 2009

If you have MS Visual Studio, there is a command line tool called DUMPBIN.

dumpbin /exports <nameofdll>