[SETUPAPI]

- Implement a FIXME in SetupDiOpenDeviceInfoW

svn path=/trunk/; revision=54038
This commit is contained in:
Thomas Faber 2011-10-06 22:34:45 +00:00
parent 9bcb3b3a2e
commit 79a2a27b57

View file

@ -4826,10 +4826,10 @@ SetupDiOpenDeviceInfoW(
PLIST_ENTRY ItemList = list->ListHead.Flink;
while (ItemList != &list->ListHead)
{
// TODO
//if (good one)
// break;
FIXME("not implemented\n");
deviceInfo = CONTAINING_RECORD(ItemList, struct DeviceInfo, ListEntry);
if (!wcscmp(deviceInfo->instanceId, DeviceInstanceId))
break;
deviceInfo = NULL;
ItemList = ItemList->Flink;
}