SendInput method

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

Implementation

int SendInput(
  int cInputs,
  ffi.Pointer<INPUT> pInputs,
  int cbSize,
) {
  return _SendInput(
    cInputs,
    pInputs,
    cbSize,
  );
}