0

简单地说:我想评估 WinApi 发送到窗口的消息。这个窗口不是我的应用程序的一部分。


因此,当消息发送到窗口时,假设notepad我想阅读它们并将它们转发到记事本进程的实际窗口过程。什么是正确的做法?到目前为止我有这个。但它似乎不起作用:

private static IntPtr hook = IntPtr.Zero;

private static IntPtr callWndProc(int code, IntPtr wParam, IntPtr lParam)
{
    Console.WriteLine("hello world");
    CWPSTRUCT a = new CWPSTRUCT();
    Marshal.PtrToStructure(lParam, a);
    Console.WriteLine(a.message);
    return Windows.CallNextHookEx(hook, code, wParam, lParam);
}

static void Main(string[] args)
{
    Process[] procs = Process.GetProcessesByName("notepad");
    if (procs.Length > 0)
    {
        hook = Windows.SetWindowsHookEx(WH_CALLWNDPROC, Marshal.GetFunctionPointerForDelegate((HookProc)callWndProc), procs[0].Handle, procs[0].Id);
        // last result: (126) The specified module could not be found.
        // hook == 0
    }
    Console.ReadKey();
}
4

0 回答 0