GetRawInputDeviceInfoA method

int GetRawInputDeviceInfoA(
  1. Pointer<Void> hDevice,
  2. int uiCommand,
  3. Pointer<Void> pData,
  4. Pointer<Uint32> pcbSize,
)

Implementation

int GetRawInputDeviceInfoA(
  ffi.Pointer<ffi.Void> hDevice,
  int uiCommand,
  ffi.Pointer<ffi.Void> pData,
  ffi.Pointer<ffi.Uint32> pcbSize,
) {
  return (_GetRawInputDeviceInfoA ??= _dylib.lookupFunction<
      _c_GetRawInputDeviceInfoA,
      _dart_GetRawInputDeviceInfoA>('GetRawInputDeviceInfoA'))(
    hDevice,
    uiCommand,
    pData,
    pcbSize,
  );
}