15 references to INPUT
System.Windows.Forms (6)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarButtonAccessibleObject.cs (1)
126INPUT mouseInput = default;
System\Windows\Forms\SendKeys\SendKeys.cs (5)
636Span<INPUT> currentInput = stackalloc INPUT[2]; 653int INPUTSize = sizeof(INPUT); 859Span<INPUT> keyboardInput = stackalloc INPUT[2];
System.Windows.Forms.Primitives (9)
_generated\425\Windows.Win32.PInvoke.USER32.dll.g.cs (5)
2897 /// <inheritdoc cref="SendInput(uint, winmdroot.UI.Input.KeyboardAndMouse.INPUT*, int)"/> 2899 internal static unsafe uint SendInput(ReadOnlySpan<winmdroot.UI.Input.KeyboardAndMouse.INPUT> pInputs, int cbSize) 2901 fixed (winmdroot.UI.Input.KeyboardAndMouse.INPUT* pInputsLocal = pInputs) 2929 internal static unsafe uint SendInput(uint cInputs, winmdroot.UI.Input.KeyboardAndMouse.INPUT* pInputs, int cbSize) 2937 static extern unsafe uint LocalExternFunction(uint cInputs, winmdroot.UI.Input.KeyboardAndMouse.INPUT* pInputs, int cbSize);
System\Windows\Forms\Automation\UiaTextProvider.cs (4)
121public static int SendInput(ref INPUT input) 123fixed (INPUT* i = &input) 125return (int)PInvoke.SendInput(1, i, sizeof(INPUT)); 131INPUT keyboardInput = default;