How do I get all APIs exposed by a dll

  • Thread starter Thread starter Vikas
  • Start date Start date
V

Vikas

Hello,
I am consuming a C++ COM dll exposed by a 3rd party from a C#
application but I do not have a documentation of the APIs exposed by it.

Is there a command or tool available that will tell me what APIs are
exposed by this dll?

Thanks.
 
Is there a command or tool available that will tell me what APIs are
exposed by this dll?

There are tools that will give you a list of exported function names.
But that's not terribly useful if you don't have the complete function
signature and documentation of how to use the functions. Why don't you
contact the DLL vendor and request some documentation?



Mattias
 
Back
Top