123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int MOUSEEVENTF_MOVE = 0x0001;
-
-
-
- public const int MOUSEEVENTF_LEFTDOWN = 0x0002;
-
-
-
- public const int MOUSEEVENTF_LEFTUP = 0x0004;
-
-
-
- public const int MOUSEEVENTF_RIGHTDOWN = 0x0008;
-
-
-
- public const int MOUSEEVENTF_RIGHTUP = 0x0010;
-
-
-
- public const int MOUSEEVENTF_MIDDLEDOWN = 0x0020;
-
-
-
- public const int MOUSEEVENTF_MIDDLEUP = 0x0040;
-
-
-
- public const int MOUSEEVENTF_XDOWN = 0x0080;
-
-
-
- public const int MOUSEEVENTF_XUP = 0x0100;
-
-
-
- public const int MOUSEEVENTF_WHEEL = 0x0800;
-
-
-
- public const int MOUSEEVENTF_HWHEEL = 0x01000;
-
-
-
- public const int MOUSEEVENTF_MOVE_NOCOALESCE = 0x2000;
-
-
-
- public const int MOUSEEVENTF_VIRTUALDESK = 0x4000;
-
-
-
- public const int MOUSEEVENTF_ABSOLUTE = 0x8000;
- }
- }
|