GetRawInputDeviceList function user32

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

Enumerates the raw input devices attached to the system.

UINT GetRawInputDeviceList(
  PRAWINPUTDEVICELIST pRawInputDeviceList,
  PUINT               puiNumDevices,
  UINT                cbSize
);

Implementation

int GetRawInputDeviceList(Pointer<RAWINPUTDEVICELIST> pRawInputDeviceList,
        Pointer<Uint32> puiNumDevices, int cbSize) =>
    _GetRawInputDeviceList(pRawInputDeviceList, puiNumDevices, cbSize);