keeweb/helper/win32/src/KeeWebHelper/WindowsInput/Native/XButton.cs

19 lines
562 B
C#
Executable File

namespace WindowsInput.Native
{
/// <summary>
/// XButton definitions for use in the MouseData property of the <see cref="MOUSEINPUT"/> structure. (See: http://msdn.microsoft.com/en-us/library/ms646273(VS.85).aspx)
/// </summary>
internal enum XButton : uint
{
/// <summary>
/// Set if the first X button is pressed or released.
/// </summary>
XButton1 = 0x0001,
/// <summary>
/// Set if the second X button is pressed or released.
/// </summary>
XButton2 = 0x0002,
}
}