MOUSEDATA.cs 431 B

1234567891011121314151617
  1. using System;
  2. namespace Microsoft.Win32
  3. {
  4. //MOUSEDATA定义
  5. public static partial class NativeMethods
  6. {
  7. /// <summary>
  8. /// Set if the first X button is pressed or released.
  9. /// </summary>
  10. public const int XBUTTON1 = 0x0001;
  11. /// <summary>
  12. /// Set if the second X button is pressed or released.
  13. /// </summary>
  14. public const int XBUTTON2 = 0x0002;
  15. }
  16. }