Is there a hook type that can intercept messages (such as WM_INPUT) while they're in the message queue without relying on the application?
I have looked into the following types of hooks, but each have their own drawbacks:
- WH_GETMESSAGE - relies on GetMessage or PeekMessage being called, which may not be feasible as I am checking for messages once per frame (so as not to compromise framerates), which is unacceptable for WM_INPUT
Leave a comment: