| File: System\Windows\InterOp\IStylusInputProvider.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using MS.Internal.Interop; using System.Windows.Input; namespace System.Windows.Interop { /// <summary> /// Implements an input provider per hwnd for WM_POINTER messages /// </summary> internal interface IStylusInputProvider : IInputProvider, IDisposable { #region Message Filtering /// <summary> /// Handles windows messages /// </summary> IntPtr FilterMessage(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, ref bool handled); #endregion } }