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);}
这不起作用。虽然它确实阻止了点击,但当它悬停在我的测试窗口上时,并且在点击应用程序的菜单时它可以工作,它也阻止点击我创建的所有其他窗口(所以那些其他窗口现在不起作用)。 问题太笼统了,详细阐述 你去看看Github里提问的智慧吧 是外部还是内部点不到游戏窗口
页:
[1]