13 references to POINTER_INFO
PresentationCore (13)
MS\Win32\UnsafeNativeMethodsPointer.cs (5)
289internal POINTER_INFO pointerInfo; 365internal POINTER_INFO pointerInfo; 535internal static extern bool GetPointerInfo([In] UInt32 pointerId, [In, Out] ref POINTER_INFO pointerInfo); 541internal static extern bool GetPointerInfoHistory([In] UInt32 pointerId, [In, Out] ref UInt32 entriesCount, [In, Out] POINTER_INFO[] pointerInfo); 638internal static extern void BufferPointerPacketsInteractionContext([In] IntPtr interactionContext, [In] UInt32 entriesCount, [In] POINTER_INFO[] pointerInfo);
System\Windows\Input\Stylus\Pointer\PointerData.cs (6)
20private POINTER_INFO _info; 35private POINTER_INFO[] _history; 49internal POINTER_INFO Info 82internal POINTER_INFO[] History 103_history = new POINTER_INFO[_info.historyCount]; 109_history = Array.Empty<POINTER_INFO>();
System\Windows\Input\Stylus\Pointer\PointerInteractionEngine.cs (1)
244UnsafeNativeMethods.BufferPointerPacketsInteractionContext(_interactionContext, 1, new UnsafeNativeMethods.POINTER_INFO[] { _stylusDevice.CurrentPointerInfo });
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
188internal UnsafeNativeMethods.POINTER_INFO CurrentPointerInfo { get { return _pointerData.Info; } }