Is there any generic tool witch can load a dll,display all it's export functions and then allow you to make a call to a specific export while cathcing the results?

link|improve this question
feedback

1 Answer

You want the dumpbin utility: it comes with Visual Studio and can display all the exported symbols in a DLL.

Depending on the calling conventions and name decoration used you may or may not be able to easily call into the exports: it really depends on the library and how it was built.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.