Reputation: 205
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
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
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