123456789101112131415161718192021222324252627282930313233343536373839 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int MK_NONE = 0x0000;
-
-
-
- public const int MK_LBUTTON = 0x0001;
-
-
-
- public const int MK_RBUTTON = 0x0002;
-
-
-
- public const int MK_SHIFT = 0x0004;
-
-
-
- public const int MK_CONTROL = 0x0008;
-
-
-
- public const int MK_MBUTTON = 0x0010;
-
-
-
- public const int MK_XBUTTON1 = 0x0020;
-
-
-
- public const int MK_XBUTTON2 = 0x0040;
- }
- }
|