// dispmprt.h
typedef enum _DXGK_CHILD_STATUS_TYPE {
StatusUninitialized,
StatusConnection,
StatusRotation,
StatusMiracastConnection
} DXGK_CHILD_STATUS_TYPE, *PDXGK_CHILD_STATUS_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_CHILD_STATUS_TYPE enumeration indicates the type of status being requested or reported for a child device of the display adapter.
StatusUninitializedIndicates that a variable of type DXGK_CHILD_STATUS_TYPE has not yet been assigned a meaningful value.
StatusConnectionIndicates that the request or report pertains to whether the child device has a monitor (or other display device) connected to it.
StatusRotationIndicates that the request or report pertains to the rotation angle of the monitor (or other display device) that is connected to the child device.
StatusMiracastConnectionIndicates that the request or report pertains to a monitor (or other display device) that is connected wirelessly to the child device through a Miracast connected session.
Supported by WDDM 1.3 and later drivers running on Windows 8.1 and later.
The Type member of a DXGK_CHILD_STATUS structure is a member of the DXGK_CHILD_STATUS_TYPE enumeration.