Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DLLs 1

Status
Not open for further replies.

cid

Programmer
Jan 4, 2001
18
US
How can I find out what functions are in certain DLLs? I figure there has to be some sort of utility that will pull function names and params from a DLL. Something like that would be VERY VERY VERY usefull to me. If some one could let me know, I would appreciate it. Thanks in advance. ~[ cid ]~

web // email // cid@cjd-web.com
aim // ciddivine
 
If the DLL you are looking at is a COM dll then you can use Oleview.exe to see its interfaces and fucntions. If the DLL is a standard DLL with exported APIs, then use the command line applications with the /EXPORTS tag (i.e. C:\Dumpbin /EXPORTS Myexe.exe). Both of these utility applications comes with visual studio. - Jeff Marler B-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top