We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http://bbs.2ccc.com/topic.asp?topicid=617767
X64之所以有问题是因为代码写法有问题,HOOK的导入表的跳转代理函数
你把 HookProc(@Winapi.Windows.GetTickCount64, @GetTickCount64CallBack, @GetTickCount64Next); 改成 HookProc('kernel32.dll','GetTickCount64', @GetTickCount64CallBack, @GetTickCount64Next); 就可以了。
第一种写法如果函数是Delphi实现的没问题,但是你这个是钩的导入表的跳转函数。 第二种写法是钩的kernel32.dll中函数的本体
The text was updated successfully, but these errors were encountered:
No branches or pull requests
http://bbs.2ccc.com/topic.asp?topicid=617767
X64之所以有问题是因为代码写法有问题,HOOK的导入表的跳转代理函数
你把
HookProc(@Winapi.Windows.GetTickCount64, @GetTickCount64CallBack, @GetTickCount64Next);
改成
HookProc('kernel32.dll','GetTickCount64', @GetTickCount64CallBack, @GetTickCount64Next);
就可以了。
第一种写法如果函数是Delphi实现的没问题,但是你这个是钩的导入表的跳转函数。
第二种写法是钩的kernel32.dll中函数的本体
The text was updated successfully, but these errors were encountered: