Jakeroid
Jakeroid

Reputation: 205

What ways can found the description of functions inside DLL?

I have DLL without documentations and without list of available functions. What ways can found the description of functions inside DLL? I tried to use dllexp.exe, but it showed me only functions names. How I can to get an arguments of functions?

Upvotes: 1

Views: 87

Answers (3)

Pac
Pac

Reputation: 21

Also Dependency Walker should help:

http://www.dependencywalker.com/

Upvotes: 2

Alexander Nassian
Alexander Nassian

Reputation: 517

You can also use DLL Export Viewer or the commercial tool PE.Explorer. Both will show you a nice overview and some more information about the library.

Upvotes: 1

Duke
Duke

Reputation: 1731

you can use Microsoft visual studio intellisense . it shows you each function description(if exist) ,argument(all overrides too) and their types.

Upvotes: 1

Related Questions