Reputation: 11
How to find address of function pointers in a running process?
I am currently using C++ under Windows XP and wish to find the address of a function. Could somebody help me please? If you could, please give me an example. Thanks.
Upvotes: 1
Views: 1160
Reputation: 33167
Simplest way: Use the debug symbols.
If there are no symbols, you're going to have to figure out where your functions are the hard way (reverse compile, find entry points, find function which looks like the one you want). Software such as IDA Pro is your best bet.
Upvotes: 1