WdfIoResourceRequirementsListGetIoResList 函数 (wdfresource.h)
[仅适用于 KMDF]
WdfIoResourceRequirementsListGetIoResList 方法返回框架 resource-range-list 对象的句柄,该对象表示指定资源要求列表中的指定逻辑配置。
语法
WDFIORESLIST WdfIoResourceRequirementsListGetIoResList(
[in] WDFIORESREQLIST RequirementsList,
[in] ULONG Index
);
参数
[in] RequirementsList
表示设备资源要求列表的框架 resource-requirements-list 对象的句柄。
[in] Index
一个从零开始的值,用作 RequirementsList 指定的资源要求列表中的索引。
返回值
如果索引值有效,WdfIoResourceRequirementsListGetIoResList 返回框架 resource-range-list 对象的句柄,该句柄表示 Index 参数标识的逻辑配置。 否则,该方法返回 NULL。
如果驱动程序提供无效的对象句柄,则会发生系统 bug 检查。
注解
有关资源要求列表的详细信息,请参阅 Framework-Based 驱动程序的硬件资源。
下面的代码示例搜索设备的资源要求列表,以查找描述中断资源的第一个资源描述符。
NTSTATUS
Example_EvtDeviceFilterRemoveResourceRequirements(
IN WDFDEVICE Device,
IN WDFIORESREQLIST RequirementsList
)
{
ULONG i, j, reqCount, resCount;
BOOLEAN descriptorFound = FALSE;
//
// Obtain the number of logical configurations.
//
reqCount = WdfIoResourceRequirementsListGetCount(RequirementsList);
//
// Search each logical configuration.
//
for (i = 0; i < reqCount; i++) {
WDFIORESLIST reslist;
if (descriptorFound) {
break;
}
reslist = WdfIoResourceRequirementsListGetIoResList(
RequirementsList,
i
);
//
// Get the number of resource descriptors that
// are in this logical configuration.
//
resCount = WdfIoResourceListGetCount(reslist);
for (j = 0; j < resCount; j++) {
PIO_RESOURCE_DESCRIPTOR descriptor;
//
// Get the next resource descriptor.
//
descriptor = WdfIoResourceListGetDescriptor(
reslist,
j
);
//
// Stop if this descriptor is an interrupt descriptor.
//
if (descriptor->Type == CmResourceTypeInterrupt) {
descriptorFound = TRUE;
break;
}
}
}
...
}
要求
要求 | 值 |
---|---|
目标平台 | 通用 |
最低 KMDF 版本 | 1.0 |
标头 | wdfresource.h (包括 Wdf.h) |
Library | Wdf01000.sys (请参阅框架库 Versioning.) |
IRQL | <=DISPATCH_LEVEL |
DDI 符合性规则 | DriverCreate (kmdf) 、 KmdfIrql (kmdf) 、 KmdfIrql2 (kmdf) 、 KmdfIrqlExplicit (kmdf) |