Skip to content
This repository has been archived by the owner on Apr 21, 2021. It is now read-only.

Commit

Permalink
#5 fix mouse wheel button click event not captured
Browse files Browse the repository at this point in the history
  • Loading branch information
justcoding121 committed Apr 13, 2018
1 parent f81a80b commit 1733016
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion EventHook/Hooks/MouseHook.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ public enum MouseMessages
WM_MOUSEMOVE = 0x0200,
WM_MOUSEWHEEL = 0x020A,
WM_RBUTTONDOWN = 0x0204,
WM_RBUTTONUP = 0x0205
WM_RBUTTONUP = 0x0205,
WM_WHEELBUTTONDOWN = 0x207,
WM_WHEELBUTTONUP = 0x208,
}

[StructLayout(LayoutKind.Sequential)]
Expand Down

0 comments on commit 1733016

Please sign in to comment.