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?
|
feedback
|
|
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. | |||
|
feedback
|