Last active
July 13, 2016 19:06
-
-
Save kuhlenh/c7bce1a9039e87da1af195507155a42e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Flags> | |
Enum MouseEventFlags | |
MOUSEEVENTF_ABSOLUTE = &B0000_1_0000_000000_0 | |
MOUSEEVENTF_LEFTDOWN = &B0000_0_0000_000001_0 | |
MOUSEEVENTF_LEFTUP = &B0000_0_0000_000010_0 | |
MOUSEEVENTF_RIGHTDOWN = &B0000_0_0000_000100_0 | |
MOUSEEVENTF_RIGHTUP = &B0000_0_0000_001000_0 | |
MOUSEEVENTF_MIDDLEDOWN = &B0000_0_0000_010000_0 | |
MOUSEEVENTF_MIDDLEUP = &B0000_0_0000_100000_0 | |
End Enum |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment