GetRegisteredRawInputDevices

[DllImport("user32.dll", SetLastError = true)]
public static extern uint GetRegisteredRawInputDevices(
   IntPtr pRawInputDevices,
   ref uint puiNumDevices,
   uint cbSize
);

Microsoft documentation: Link

Last updated