RegisterRawInputDevices method

int RegisterRawInputDevices(
  1. Pointer<LPRAWINPUTDEVICE> pRawInputDevices,
  2. int uiNumDevices,
  3. int cbSize
)

Implementation

int RegisterRawInputDevices(
  ffi.Pointer<LPRAWINPUTDEVICE> pRawInputDevices,
  int uiNumDevices,
  int cbSize,
) {
  return (_RegisterRawInputDevices ??= _dylib.lookupFunction<
      _c_RegisterRawInputDevices,
      _dart_RegisterRawInputDevices>('RegisterRawInputDevices'))(
    pRawInputDevices,
    uiNumDevices,
    cbSize,
  );
}