// wdfchildlist.h
VOID WdfChildListEndScan(
[in] WDFCHILDLIST ChildList
);
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF only]
The WdfChildListEndScan method processes modifications to a specified child list.
ChildList
[in]The same handle to a framework child-list object that the driver previously specified to WdfChildListBeginScan.
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.
For a code example that uses WdfChildListEndScan, see WdfChildListAddOrUpdateChildDescriptionAsPresent.