Reputation: 41815
I need to detect the source of message WM_MOUSEMOVE, but I could not find any resource on the internet.
Is this possible?
Upvotes: 1
Views: 305
Reputation: 41815
Yes, actually Raw Input could detect where the mouse_move message comes from, otherwise other input device such as joystick etc will not work.
Upvotes: 0
Reputation: 2349
I strongly believe it is not possible. WM_MOUSEMOVE
describes move of the mouse cursor on the screen, no matter what device caused the action. Actually it even might be software-emulated move of the mouse cursor, i.e. not caused by any HW device at all.
Upvotes: 1