Any1 know how to read the Functions and Subs of a DLL
for example:
311.dll has
AOLGetList, and people got that and the fucntion (the whole declarations for it) anyone know how to do that?
thanks
Printable View
Any1 know how to read the Functions and Subs of a DLL
for example:
311.dll has
AOLGetList, and people got that and the fucntion (the whole declarations for it) anyone know how to do that?
thanks
If you have VS6, then you can use the dumpbin.exe program from VC++ to look at the exports (/EXPORTS switch).
I'm not sure how to determine the entire declaration for the function, though.
-John