DLL Function Prototypes
-
dumpbin /exports TEST.DLL > exports.txt dumpbin.exe comes with Visual C++.
-
dumpbin /exports TEST.DLL > exports.txt dumpbin.exe comes with Visual C++.
-
Thanks, but that only give the function names. I need to know the function prototypes. Richard
-
dumpbin /exports TEST.DLL > exports.txt dumpbin.exe comes with Visual C++.
Does anyone know of a tool that will do this for type libraries? I can use OLE View to get the IDL, but I'd like to get hold of the info in C++ and VB formats. I might try to do something like this myself, but why reinvent the wheel, if it has already been done? (actually I'm lazy, but thats besides to point ;-) )
-
Does anyone know of a tool that will do this for type libraries? I can use OLE View to get the IDL, but I'd like to get hold of the info in C++ and VB formats. I might try to do something like this myself, but why reinvent the wheel, if it has already been done? (actually I'm lazy, but thats besides to point ;-) )
OLEView itself is a VC Sample.
-
Thanks, but that only give the function names. I need to know the function prototypes. Richard
-
Does anyone know of a tool that will do this for type libraries? I can use OLE View to get the IDL, but I'd like to get hold of the info in C++ and VB formats. I might try to do something like this myself, but why reinvent the wheel, if it has already been done? (actually I'm lazy, but thats besides to point ;-) )
-
Wasn't there an article in MSJ a year or so back about doing this very thing? Can't remember who wrote it though. The article was on generating symbols from a type library (I think). CHeck out the MSJ website, its probably on there. Stephen Kellett
Thanks, I think this is the article, if anyone else is interested Improve Your Debugging by Generating Symbols from COM Type Libraries
-
I have got a program at work that givs me the prototypes of the functions in a dll. I can't remember the name of the program, but I can have a look at it tomorrow.
The program is called ShowDep. http://www.showdep.com
-
Thanks, I think this is the article, if anyone else is interested Improve Your Debugging by Generating Symbols from COM Type Libraries