Calling Functions With In Classes From Address
How would i go about calling functions within classes from thier address?
Are you sure that will work with calling functions within classes?
i have this function:
void GameAudio::StopAllSounds(void)
its memory address is 0x004A0656
when ever i try call it it crashes.
could you give me an example by any chance?
---------- Post added at 07:09 AM ---------- Previous post was at 05:56 AM ----------
i don't think this is possible
mov ecx, instanceofclass
push ecx //not sure if needed
mov eax, address
call eax
would an instance of the class be an address?
Yes there is the higher level way of doing it as void shows, but the reason it works is explained by my assembly way. And yes op, it should work