How can I get all functions' name in a dll file?
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
I have one dll file without any information about that file. I want to know all functions in that dll file. How can I do to list all functions?
dumpbin /export your.dll lists all exports by that dll. dumpbin is included in VC++ compiler packages.
-
I have one dll file without any information about that file. I want to know all functions in that dll file. How can I do to list all functions?
You can also use the Depends (depends.exe) tool that comes with Visual Studio.