13 references to POINTER_INFO
PresentationCore (13)
MS\Win32\UnsafeNativeMethodsPointer.cs (5)
295internal POINTER_INFO pointerInfo; 371internal POINTER_INFO pointerInfo; 541internal static extern bool GetPointerInfo([In] UInt32 pointerId, [In, Out] ref POINTER_INFO pointerInfo); 547internal static extern bool GetPointerInfoHistory([In] UInt32 pointerId, [In, Out] ref UInt32 entriesCount, [In, Out] POINTER_INFO[] pointerInfo); 644internal static extern void BufferPointerPacketsInteractionContext([In] IntPtr interactionContext, [In] UInt32 entriesCount, [In] POINTER_INFO[] pointerInfo);
System\Windows\Input\Stylus\Pointer\PointerData.cs (6)
24private POINTER_INFO _info; 39private POINTER_INFO[] _history; 53internal POINTER_INFO Info 86internal POINTER_INFO[] History 107_history = new POINTER_INFO[_info.historyCount]; 113_history = Array.Empty<POINTER_INFO>();
System\Windows\Input\Stylus\Pointer\PointerInteractionEngine.cs (1)
260UnsafeNativeMethods.BufferPointerPacketsInteractionContext(_interactionContext.Value, 1, new UnsafeNativeMethods.POINTER_INFO[] { _stylusDevice.CurrentPointerInfo });
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
202internal UnsafeNativeMethods.POINTER_INFO CurrentPointerInfo { get { return _pointerData.Info; } }