13 references to POINTER_INFO
PresentationCore (13)
MS\Win32\UnsafeNativeMethodsPointer.cs (5)
288internal POINTER_INFO pointerInfo; 364internal POINTER_INFO pointerInfo; 534internal static extern bool GetPointerInfo([In] UInt32 pointerId, [In, Out] ref POINTER_INFO pointerInfo); 540internal static extern bool GetPointerInfoHistory([In] UInt32 pointerId, [In, Out] ref UInt32 entriesCount, [In, Out] POINTER_INFO[] pointerInfo); 637internal static extern void BufferPointerPacketsInteractionContext([In] IntPtr interactionContext, [In] UInt32 entriesCount, [In] POINTER_INFO[] pointerInfo);
System\Windows\Input\Stylus\Pointer\PointerData.cs (6)
19private POINTER_INFO _info; 34private POINTER_INFO[] _history; 48internal POINTER_INFO Info 81internal POINTER_INFO[] History 102_history = new POINTER_INFO[_info.historyCount]; 108_history = Array.Empty<POINTER_INFO>();
System\Windows\Input\Stylus\Pointer\PointerInteractionEngine.cs (1)
243UnsafeNativeMethods.BufferPointerPacketsInteractionContext(_interactionContext, 1, new UnsafeNativeMethods.POINTER_INFO[] { _stylusDevice.CurrentPointerInfo });
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
187internal UnsafeNativeMethods.POINTER_INFO CurrentPointerInfo { get { return _pointerData.Info; } }