1234567891011121314151617181920212223 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int KEYEVENTF_EXTENDEDKEY = 0x0001;
-
-
-
- public const int KEYEVENTF_KEYUP = 0x0002;
-
-
-
- public const int KEYEVENTF_UNICODE = 0x0004;
-
-
-
- public const int KEYEVENTF_SCANCODE = 0x0008;
- }
- }
|