我正在尝试拦截发送到在另一个进程中运行的窗口的消息,以便我可以对其中的一些做出反应。
注入应用程序是一个 x86 WPF 应用程序,它通过 p/invoke 调用此方法。我将句柄传递给另一个 x86 进程中的窗口。
extern "C" BOOL INJ_API ::InterceptMessages(HWND hWnd)
{
if (!WM_MY_INJECT)
{
WM_MY_INJECT = RegisterWindowMessage(TEXT("WM_MY_INJECT"));
}
// Get the ID of the thread running the window.
DWORD ThreadId = GetWindowThreadProcessId(hWnd, NULL);
// Set the hook
hhk = SetWindowsHookEx(WH_GETMESSAGE, HookProc, hinstDLL, ThreadId);
// hhk is non-zero, so the hook is set up
// This will block until the WM_MY_INJECT message is processed, the hook is unhooked, and we are done injecting the application.
LRESULT result = SendMessage(hWnd, WM_MY_INJECT, NULL, NULL);
return TRUE;
}
我知道消息正在发送,因为结果是正确的值。但是 DLL 永远不会被其他进程加载,并且在没有我的钩子拦截它的情况下调用该消息。