WdfChildListEndScan - NtDoc

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

VOID WdfChildListEndScan(
  [in] WDFCHILDLIST ChildList
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfchildlist-wdfchildlistendscan)

WdfChildListEndScan function

Description

[Applies to KMDF only]

The WdfChildListEndScan method processes modifications to a specified child list.

Parameters

ChildList [in]

The same handle to a framework child-list object that the driver previously specified to WdfChildListBeginScan.

Remarks

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

If the driver has made multiple calls to WdfChildListBeginIteration or WdfChildListBeginScan, the framework does not process modifications to the child list until the driver has made a corresponding number of calls to WdfChildListEndIteration and WdfChildListEndScan.

For more information about child lists, see Dynamic Enumeration.

Examples

For a code example that uses WdfChildListEndScan, see WdfChildListAddOrUpdateChildDescriptionAsPresent.

See also

WdfChildListBeginIteration

WdfChildListBeginScan

WdfChildListEndIteration