// video.h
VIDEOPORT_DEPRECATED VIDEOPORT_API VP_STATUS VideoPortEnumerateChildren(
[in] IN PVOID HwDeviceExtension,
[in] IN PVOID Reserved
);
View the official Windows Driver Kit DDI referenceNo description available.
The VideoPortEnumerateChildren function allows a video miniport driver to force a reenumeration of its child devices.
HwDeviceExtension [in]Pointer to the miniport driver's device extension.
Reserved [in]Must be set to NULL.
VideoPortEnumerateChildren returns NO_ERROR.
Some devices generate an interrupt when new hardware is connected to the system, or when existing hardware is disconnected from the system. For these devices, VideoPortEnumerateChildren can make such system changes as seamless as possible. The following is one possible scenario that forces the reenumeration of child devices through VideoPortEnumerateChildren:
VideoPortEnumerateChildren causes HwVidGetVideoChildDescriptor to be called, allowing the Plug and Play Manager to enumerate all of the adapter's child devices.