我理解如何在windows中使用setup api,但是,我似乎无法弄清楚如何获得我需要的一切。我想获取并知道如何设备友好的名称,制造商和描述。但是,我似乎无法弄清楚如何获取设备路径,因此我可以调用create file。有人能指出我正确的方向吗?
答案 0 :(得分:0)
我理解仅链接到异地的答案是错误的形式,但是这个话题很深。也恰巧有一篇关于确切的Microsoft文章被问到什么: https://docs.microsoft.com/en-us/windows-hardware/drivers/install/using-setupapi-to-access-device-properties--windows-vista-and-later-。
下面是一个代码段,它将返回GUID指定的所有设备的设备路径(至少包括initguid.h
,然后是设备特定的标头,例如usbiodef.h
)。这应该使您大致了解SetupAPI的工作方式。设备的路径是一个字符串,可以将其传递给CreateFile
以创建适合与DeviceIoControl
一起使用的句柄。
vector<wstring> EnumDevices(
_In_ const GUID Guid
)
{
vector<wstring> r;
int index = 0;
HDEVINFO hDevInfo = SetupDiGetClassDevs(&Guid, NULL, NULL, DIGCF_PRESENT | DIGCF_DEVICEINTERFACE);
SP_DEVINFO_DATA DevInfoData;
memset(&DevInfoData, 0, sizeof(SP_DEVINFO_DATA));
DevInfoData.cbSize = sizeof(SP_DEVINFO_DATA);
while (SetupDiEnumDeviceInfo(hDevInfo, index, &DevInfoData)) {
index++;
int jndex = 0;
SP_DEVICE_INTERFACE_DATA DevIntData;
memset(&DevIntData, 0, sizeof(SP_DEVICE_INTERFACE_DATA));
DevIntData.cbSize = sizeof(SP_DEVICE_INTERFACE_DATA);
while (SetupDiEnumDeviceInterfaces(
hDevInfo,
&DevInfoData, &Guid, jndex, &DevIntData
)) {
jndex++;
// Get the size required for the structure.
DWORD RequiredSize;
SetupDiGetDeviceInterfaceDetail(
hDevInfo, &DevIntData, NULL, NULL, &RequiredSize, NULL
);
PSP_DEVICE_INTERFACE_DETAIL_DATA pDevIntDetData = (PSP_DEVICE_INTERFACE_DETAIL_DATA)malloc(
sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA) + RequiredSize
);
memset(pDevIntDetData, 0, sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA) + RequiredSize);
pDevIntDetData->cbSize = sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA);
SetupDiGetDeviceInterfaceDetail(
hDevInfo,
&DevIntData,
pDevIntDetData, RequiredSize,
NULL,
&DevInfoData
);
r.push_back(wstring(pDevIntDetData->DevicePath));
free(pDevIntDetData);
}
}
return r;
}