I have a DLL file that has some helpful functions I want to call in my application. Unfortunately I don't have the documentation for it any longer.
Is there any way I can discover what are the functions exported by the DLL and their method signature?
Maybe there's a utility that lists the functions and their arguments.
Know of any?
dumpbin /exports
(Dumpbin
[1
] being a utility in the Windows SDK)[1]
: http://msdn.microsoft.com/en-us/library/aa446532.aspxEdit: BTW as I see 'interop' and '.NET' in the tags, don't forget Reflector and pinvoke.net. (Neither of these help with actual Win32 DLL exports of course.)
The windows SDK used to include the dependency walker GUI utility that can be used to explore DLL content:
Nowadays, it can be found here.
For method signature detail and creating inter-connection
.NET
code, look for your DLL in the pinvoke site. You can also try their add-in to Visual Studio 2003 and 2005.