SendInput function user32

int SendInput(
  1. int cInputs,
  2. Pointer<INPUT> pInputs,
  3. int cbSize
)

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);