-
Notifications
You must be signed in to change notification settings - Fork 35
Open
@vbmaxps
Description
void hooker::HookerX86::doHook(void *func, void *newAddr, void **origFunc) const {
char *f = (char *)func;
f[0] = 0x68;
*(long *)&f[1] = (long)newAddr;
f[5] = 0xc3;
}
这个没有处理 调用origFunc 原始函数吗?
Metadata
Metadata
Assignees
Labels
No labels