Created
September 11, 2016 21:52
-
-
Save jonatino/2598d58a3a7befd6bde30aa9348abdf8 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
public static final int MOUSEEVENTF_ABSOLUTE = 0x8000; | |
public static final int MOUSEEVENTF_LEFTDOWN = 0x0002; | |
public static final int MOUSEEVENTF_LEFTUP = 0x0004; | |
public static final int MOUSEEVENTF_MIDDLEDOWN = 0x0020; | |
public static final int MOUSEEVENTF_MIDDLEUP = 0x0040; | |
public static final int MOUSEEVENTF_MOVE = 0x0001; | |
public static final int MOUSEEVENTF_RIGHTDOWN = 0x0008; | |
public static final int MOUSEEVENTF_RIGHTUP = 0x0010; | |
public static final int MOUSEEVENTF_WHEEL = 0x0800; | |
public static final int MOUSEEVENTF_XDOWN = 0x0080; | |
public static final int MOUSEEVENTF_XUP = 0x0100; | |
public static final int MOUSEEVENTF_WHEEL = 0x0800; | |
public static final int MOUSEEVENTF_HWHEEL = 0x01000; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment