SetupDiEnumDeviceInfo function setupapi

int SetupDiEnumDeviceInfo(
  1. int DeviceInfoSet,
  2. int MemberIndex,
  3. Pointer<SP_DEVINFO_DATA> DeviceInfoData
)

The SetupDiEnumDeviceInfo function returns a SP_DEVINFO_DATA structure that specifies a device information element in a device information set.

BOOL SetupDiEnumDeviceInfo(
  HDEVINFO         DeviceInfoSet,
  DWORD            MemberIndex,
  PSP_DEVINFO_DATA DeviceInfoData
);

Implementation

int SetupDiEnumDeviceInfo(int DeviceInfoSet, int MemberIndex,
        Pointer<SP_DEVINFO_DATA> DeviceInfoData) =>
    _SetupDiEnumDeviceInfo(DeviceInfoSet, MemberIndex, DeviceInfoData);