WdfIoResourceRequirementsListRemoveByIoResList 函数 (wdfresource.h)

[仅适用于 KMDF]

WdfIoResourceRequirementsListRemoveByIoResList 方法从资源要求列表中删除逻辑配置

语法

void WdfIoResourceRequirementsListRemoveByIoResList(
  [in] WDFIORESREQLIST RequirementsList,
  [in] WDFIORESLIST    IoResList
);

参数

[in] RequirementsList

表示设备资源要求列表的框架 resource-requirements-list 对象的句柄。

[in] IoResList

框架 resource-range-list 对象的句柄,该对象表示要从 RequirementsList 指定的资源要求列表中删除的逻辑配置。

返回值

备注

如果驱动程序提供无效的对象句柄,则会发生 bug 检查。

WdfIoResourceRequirementsListRemoveByIoResList 方法删除与 IoResList 参数指定的句柄关联的逻辑配置。

WdfIoResourceRequirementsListRemoveByIoResList 删除索引值 n 的逻辑配置时,下一个逻辑配置的索引值将从 n+1 更改为 n

有关资源要求列表的详细信息,请参阅 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 the port descriptor
            // that we're looking for.
            //
            if (descriptor->Type == CmResourceTypePort) {
                if ((descriptor->u.Port.MinimumAddress) == PORT_RANGE_A) {
                    WdfIoResourceRequirementsListRemoveByIoResList(
                                 RequirementsList,
                                 reslist
                                 );
                    descriptorFound = TRUE;
                    break;
            }
        }
    }
...
}

要求

要求
目标平台 通用
最低 KMDF 版本 1.0
标头 wdfresource.h (包括 Wdf.h)
Library Wdf01000.sys (请参阅框架库版本控制.)
IRQL <=DISPATCH_LEVEL
DDI 符合性规则 DriverCreate (kmdf) KmdfIrql (kmdf) KmdfIrql2 (kmdf) 、 KmdfIrqlExplicit (kmdf)

另请参阅

IO_RESOURCE_DESCRIPTOR

WdfIoResourceListGetCount

WdfIoResourceListGetDescriptor

WdfIoResourceRequirementsListGetCount

WdfIoResourceRequirementsListGetIoResList

WdfIoResourceRequirementsListRemove