Skip to content

Instantly share code, notes, and snippets.

@kuhlenh
Last active July 13, 2016 19:06
Show Gist options
  • Save kuhlenh/c7bce1a9039e87da1af195507155a42e to your computer and use it in GitHub Desktop.
Save kuhlenh/c7bce1a9039e87da1af195507155a42e to your computer and use it in GitHub Desktop.
<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