diff --git a/PInvoke/User32/WinUser.Pointer.cs b/PInvoke/User32/WinUser.Pointer.cs index b4bdf3ff..aa6939e0 100644 --- a/PInvoke/User32/WinUser.Pointer.cs +++ b/PInvoke/User32/WinUser.Pointer.cs @@ -285,19 +285,19 @@ namespace Vanara.PInvoke /// 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 /// - PT_POINTER, + PT_POINTER = 1, /// Touch pointer type. - PT_TOUCH, + PT_TOUCH = 2, /// Pen pointer type. - PT_PEN, + PT_PEN = 3, /// Mouse pointer type. - PT_MOUSE, + PT_MOUSE = 4, /// Touchpad pointer type (Windows 8.1 and later). - PT_TOUCHPAD, + PT_TOUCHPAD = 5, } /// Values that can appear in the touchFlags field of the POINTER_TOUCH_INFO structure.