INPUT.cs 607 B

12345678910111213141516171819
  1. namespace Microsoft.Win32
  2. {
  3. //INPUT定义
  4. public static partial class NativeMethods
  5. {
  6. /// <summary>
  7. /// The event is a mouse event. Use the mi structure of the union.
  8. /// </summary>
  9. public const int INPUT_MOUSE = 0;
  10. /// <summary>
  11. /// The event is a keyboard event. Use the ki structure of the union.
  12. /// </summary>
  13. public const int INPUT_KEYBOARD = 1;
  14. /// <summary>
  15. /// The event is a hardware event. Use the hi structure of the union.
  16. /// </summary>
  17. public const int INPUT_HARDWARE = 2;
  18. }
  19. }