// video.h
VIDEOPORT_DEPRECATED VIDEOPORT_API PVOID VideoPortGetAssociatedDeviceExtension(
[in] IN PVOID DeviceObject
);
View the official Windows Driver Kit DDI referenceNo description available.
The VideoPortGetAssociatedDeviceExtension function returns the device extension for the parent of the specified device object.
DeviceObject [in]Is the device object of a child device.
VideoPortGetAssociatedDeviceExtension returns a pointer to the device extension of DeviceObject's parent.
The miniport driver of a child device can call this function to obtain a description of its parent through the parent's device extension.