function pointer

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I try to get the absolute address of a function in memory. But using the function pointer in C++ .NET gives me the relative address ( which is the address of an instruction jmp ....... to the function ).

Is there anyway to get the absolue addess of an function?
 
If this function is exported by a DLL being loaded by your application you can try to get its address from the AIT table of the DLL, see PE file formant/dbghelp library.
 
Back
Top