GetRawInputDeviceInfo function user32

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

Retrieves information about the raw input device.

UINT GetRawInputDeviceInfoW(
  HANDLE hDevice,
  UINT   uiCommand,
  LPVOID pData,
  PUINT  pcbSize
);

Implementation

int GetRawInputDeviceInfo(
        int hDevice, int uiCommand, Pointer pData, Pointer<Uint32> pcbSize) =>
    _GetRawInputDeviceInfo(hDevice, uiCommand, pData, pcbSize);