Fix POINTER_INPUT_TYPE missing initial value (#340)

pull/342/head
XiaoHe321 2022-11-10 11:23:51 +08:00 committed by GitHub
parent 6e77cebd06
commit 2e77f5b4b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -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 /// 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 /// the query is to include pointers of all types
/// </summary> /// </summary>
PT_POINTER, PT_POINTER = 1,
/// <summary>Touch pointer type.</summary> /// <summary>Touch pointer type.</summary>
PT_TOUCH, PT_TOUCH = 2,
/// <summary>Pen pointer type.</summary> /// <summary>Pen pointer type.</summary>
PT_PEN, PT_PEN = 3,
/// <summary>Mouse pointer type.</summary> /// <summary>Mouse pointer type.</summary>
PT_MOUSE, PT_MOUSE = 4,
/// <summary>Touchpad pointer type (Windows 8.1 and later).</summary> /// <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> /// <summary>Values that can appear in the touchFlags field of the POINTER_TOUCH_INFO structure.</summary>