How do you get the functions exported by the dll and
-
How do you get the functions exported by the dll and the detailed description of their arguments Thank you in advance Samir Sood;) Samir Sood
http://www.mindcracker.com/mindcracker/c\_cafe/dll/dll\_tut1l.asp Please refer this .....Basically u need to inform the compiler using some macros that these functions need to be exported Cause is my effort; Effect is God's effort
-
How do you get the functions exported by the dll and the detailed description of their arguments Thank you in advance Samir Sood;) Samir Sood
SamirSood wrote: How do you get the functions exported by the dll... The Depends utility that ships with Visual Studio is good for this. SamirSood wrote: ...the detailed description of their arguments See this article.
A rich person is not the one who has the most, but the one that needs the least.
-
SamirSood wrote: How do you get the functions exported by the dll... The Depends utility that ships with Visual Studio is good for this. SamirSood wrote: ...the detailed description of their arguments See this article.
A rich person is not the one who has the most, but the one that needs the least.
However, unless the functions are decorated C++ ones, Depends will not be able to provide much by way of parameter information; Sometimes you can get a very small hint, if the exported name has @nn after it, since that tells you the size of all the parameters, but of course, you still need to be able to read the disassembly to work out a bit more by way of context ;) Steve S