my name is Dylan Michaels.
开发者_如何学CI've created a low-level mouse hook in my Win32 C++ program and I'm aware that many applications can have hooks and Microsoft Windows sends the messages to these hooks one at a time, like a chain. I want to know if I can get my hook's place in this chain and maybe even alter it.
Thanks in advance.
The API does not expose any way to determine your hook's position within the chain, and no way to alter the ordering of the chain other than when calling SetWindowsHookEx()
.
精彩评论