This is the AMP version of this page.
If you want to load the real page instead, click this text.

Solved hoking void public long

Status
Not open for further replies.
Afaik it's almost the same as int hooking but I could be wrong...


C++:
long (*old_Example)(void *instance);
long Example(void *instance) {
    if(instance!=nullptr) {
        return 9999L;
    }
    return old_Example(instance);
}
 
Thread will be set to "solved" and closed.
When you're not happy with that just send me a message and i will re-open the thread for you.

Thanks.
 
Status
Not open for further replies.