博弟弟丶 发表于 2022-6-25 15:12

ImGui

本帖最后由 博弟弟丶 于 2022-6-25 01:42 编辑

LRESULT __stdcall HookedWndProc(const HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {   

if (true && ImGui_ImplWin32_WndProcHandler(hWnd, uMsg, wParam, lParam))

return true;      

ImGuiIO& io = ImGui::GetIO();      

if (io.WantCaptureMouse)      return 0;   

return CallWindowProc(g_DrawingApp.WndProc, hWnd, uMsg, wParam, lParam);}
这不起作用。虽然它确实阻止了点击,但当它悬停在我的测试窗口上时,并且在点击应用程序的菜单时它可以工作,它也阻止点击我创建的所有其他窗口(所以那些其他窗口现在不起作用)。

Hcat 发表于 2022-6-25 15:37

问题太笼统了,详细阐述

落红护花 发表于 2022-6-25 16:34

你去看看Github里提问的智慧吧

七夜大大 发表于 2022-7-24 08:52

是外部还是内部点不到游戏窗口
页: [1]
查看完整版本: ImGui