We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 原始函数吗?