4 instantiations of INPUT
Microsoft.VisualStudio.IntegrationTest.Utilities (4)
Input\AbstractSendKeys.cs (4)
78
var keyDownInput = new NativeMethods.
INPUT
94
var keyUpInput = new NativeMethods.
INPUT
120
input = new NativeMethods.
INPUT
138
input = new NativeMethods.
INPUT
13 references to INPUT
Microsoft.VisualStudio.IntegrationTest.Utilities (13)
Input\AbstractSendKeys.cs (10)
20
var inputs = new List<NativeMethods.
INPUT
>(keys.Length);
59
private static void AddInputs(List<NativeMethods.
INPUT
> inputs, char ch)
76
private static void AddUnicodeInputs(List<NativeMethods.
INPUT
> inputs, char ch)
78
var
keyDownInput = new NativeMethods.INPUT
94
var
keyUpInput = new NativeMethods.INPUT
114
private static void AddInputs(List<NativeMethods.
INPUT
> inputs, VirtualKey virtualKey, uint dwFlags)
116
NativeMethods.
INPUT
input;
167
private static void AddInputs(List<NativeMethods.
INPUT
> inputs, KeyPress keyPress)
170
private static void AddInputs(List<NativeMethods.
INPUT
> inputs, VirtualKey virtualKey, ShiftState shiftState = 0)
206
private void SendInputs(NativeMethods.
INPUT
[] inputs)
IntegrationHelper.cs (1)
222
public static void SendInput(NativeMethods.
INPUT
[] inputs)
Interop\NativeMethods.cs (2)
48
public static readonly int SizeOf_INPUT = Marshal.SizeOf<
INPUT
>();
184
public static extern uint SendInput(uint nInputs, [In, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)]
INPUT
[] pInputs, int cbSize);