Regular DLL Question

  • Thread starter Thread starter CJ Taylor
  • Start date Start date
C

CJ Taylor

Is there a way (or software that exists) that can browse the exported
methods of a regular DLL? Like API Text Viewer, but for DLL's themselves...
or do we need docs.

Thanks,
CJ
 
Is there a way (or software that exists) that can browse the exported
methods of a regular DLL? Like API Text Viewer, but for DLL's themselves...
or do we need docs.

Dumpbin.exe and Depends.exe, both included with VS. But the DLLs don't
contain information about the function signature, so you'll only get
the names.



Mattias
 
BAH! Fouled again!

so I take it nothing can get the function signature?

damnit...

Thanks anyways matt.
 
If you're lucky, you can get a hold of the ".h" header files from the code.
All the windows API functions have include/header files that ship with the
platform SDK.

-Rob Teixeira [MVP]

CJ Taylor said:
BAH! Fouled again!

so I take it nothing can get the function signature?

damnit...

Thanks anyways matt.
 
Back
Top