GetRawInputDeviceList method

int GetRawInputDeviceList(
  1. Pointer<PRAWINPUTDEVICELIST> pRawInputDeviceList,
  2. Pointer<Uint32> puiNumDevices,
  3. int cbSize
)

Implementation

int GetRawInputDeviceList(
  ffi.Pointer<PRAWINPUTDEVICELIST> pRawInputDeviceList,
  ffi.Pointer<ffi.Uint32> puiNumDevices,
  int cbSize,
) {
  return (_GetRawInputDeviceList ??= _dylib.lookupFunction<
      _c_GetRawInputDeviceList,
      _dart_GetRawInputDeviceList>('GetRawInputDeviceList'))(
    pRawInputDeviceList,
    puiNumDevices,
    cbSize,
  );
}