WdfCmResourceListRemove - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdfresource.h

VOID WdfCmResourceListRemove(
  [in] WDFCMRESLIST List,
  [in] ULONG        Index
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfresource-wdfcmresourcelistremove)

WdfCmResourceListRemove function

Description

[Applies to KMDF only]

The WdfCmResourceListRemove method removes a resource descriptor from a specified resource list.

Parameters

List [in]

A handle to a framework resource-list object that represents a list of hardware resources for a device.

Index [in]

A zero-based value that is used as an index into the resource list that List specifies.

Remarks

A bug check occurs if the driver supplies an invalid object handle.

The WdfCmResourceListRemove method removes the resource descriptor that is associated with the index value that the Index parameter specifies.

When WdfCmResourceListRemove removes the resource descriptor that has the index value n, the index value of the next resource descriptor changes from n+1 to n.

For more information about resource lists, see Hardware Resources for Framework-Based Drivers.

Examples

The following code example removes the third resource descriptor from the raw and translated lists of hardware resources that an EvtDeviceRemoveAddedResources callback function receives.

NTSTATUS
MyEvtDeviceRemoveAddedResources(
    WDFDEVICE Device,
    WDFCMRESLIST ResourcesRaw,
    WDFCMRESLIST ResourcesTranslated
    )
{
...
    WdfCmResourceListRemove(
                            ResourcesRaw,
                            2
                            );
    WdfCmResourceListRemove(
                            ResourcesTranslated,
                            2
                            );
...

}

See also

WdfCmResourceListRemoveByDescriptor