SendInput function user32
Synthesizes keystrokes, mouse motions, and button clicks.
UINT SendInput(
UINT cInputs,
LPINPUT pInputs,
int cbSize
);
Implementation
int SendInput(int cInputs, Pointer<INPUT> pInputs, int cbSize) =>
_SendInput(cInputs, pInputs, cbSize);