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