I'm quite new to the Windows API and would like to know how to peek at messages another process receives. As an example, I would like to get the HWND of, say, notepad and peek at all messages that are sent to this window. I code in C/C++.
Thank you
|
|
|
You can use The Remember though, greater possibilities also mean greater responsibility. Say you "subclassed" some window, providing your window proc, if your application that set a hook exits, next thing you'll see is the application, whose messages you were peeking at, crashes if you didn't put the address of the original window proc back to where it belongs. The benefit of this kind of hooking is the ability to wait for a certain window (say with a certain window class, or name) to be created and get into that process before any window you're interested in would even be created. |
||||
|
|
|
You want to look into SetWindowsHookEx |
|||
|
|
|
You are looking for Windows Hooks . http://msdn.microsoft.com/en-us/library/ms997537.aspx You can trap SendMessage in the target process using CallWndProc hook procedure. |
||||
|
|