Reloaded-Project / Reloaded.Hooks

Advanced native function hooks for x86, x64. Welcome to the next level!
GNU Lesser General Public License v3.0
213 stars 33 forks source link

How do i get the function address #10

Closed PRNDA closed 2 years ago

PRNDA commented 3 years ago

like this:

FunctionPtr functionPtr = new FunctionPtr(0x123456);

where is 0x123456 came from?

Sewer56 commented 3 years ago

You generally get the function address by reverse engineering the target executable using an application like Ghidra.

PRNDA commented 3 years ago

You generally get the function address by reverse engineering the target executable using an application like Ghidra.

Thank you very much.