Skip to content

Commit

Permalink
Fix POINTER_INPUT_TYPE missing initial value (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
xh321 authored Nov 10, 2022
1 parent 6e77ceb commit 2e77f5b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions PInvoke/User32/WinUser.Pointer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -285,19 +285,19 @@ public enum POINTER_INPUT_TYPE
/// caller to restrict the query to specific pointer type. The PT_POINTER type can be used in these functions to specify that
/// the query is to include pointers of all types
/// </summary>
PT_POINTER,
PT_POINTER = 1,

/// <summary>Touch pointer type.</summary>
PT_TOUCH,
PT_TOUCH = 2,

/// <summary>Pen pointer type.</summary>
PT_PEN,
PT_PEN = 3,

/// <summary>Mouse pointer type.</summary>
PT_MOUSE,
PT_MOUSE = 4,

/// <summary>Touchpad pointer type (Windows 8.1 and later).</summary>
PT_TOUCHPAD,
PT_TOUCHPAD = 5,
}

/// <summary>Values that can appear in the touchFlags field of the POINTER_TOUCH_INFO structure.</summary>
Expand Down

0 comments on commit 2e77f5b

Please sign in to comment.