gpt4 book ai didi

c++ - 如何获取hooked winapi函数的调用后参数?

转载 作者:可可西里 更新时间:2023-11-01 10:27:38 28 4
gpt4 key购买 nike

对于这个例子,我说的是 Hook BeginPaint(),我 Hook 很好,我通常可以访问调用前的所有内容......

HDC WINAPI Mine_BeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint)
{


// do stuff here, inspecting PRE-CALL lppaint struct etc...

return fpBeginPaint(hWnd, lpPaint);


}

我正在寻找一种方法来检查这个 lpPaint 结构调用后,我该怎么做?

最佳答案

HDC WINAPI Mine_BeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint){
// do stuff here, inspecting PRE-CALL lppaint struct etc...
HDC result = fpBeginPaint(hWnd, lpPaint);
//inspect here whatever you want.
return result;
}

关于c++ - 如何获取hooked winapi函数的调用后参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10059973/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com