Enumerating exported DLL functions
-
Hey all, I want to get a list of exported DLL functions from a DLL (like Dependency Walker does) - along with each function's entry point. How do I do that? Thanks!
I may be wrong, but isn't the code for the Dependency Walker part of the examples shipped with Visual Studio? Regards, Alvaro
There are no stupid questions, but there are a lot of inquisitive idiots. -- despair.com
-
I may be wrong, but isn't the code for the Dependency Walker part of the examples shipped with Visual Studio? Regards, Alvaro
There are no stupid questions, but there are a lot of inquisitive idiots. -- despair.com
-
As far as I know - no... I also looked for it on MSDN and couldn't find it. Any other ideas? :-/
find some articles about the PE file format(it's the file format of exe and dll ... files). i found a very nice tutorial at http://spiff.tripnet.se/~iczelion/tutorials.html have a look at these tutorials, then u just have to code :) have fun