// dispmprt.h
typedef struct _DXGK_MIRACAST_DISPLAY_CALLBACKS {
HANDLE MiracastHandle;
DXGKCB_MIRACAST_SEND_MESSAGE DxgkCbMiracastSendMessage;
DXGKCB_MIRACAST_REPORT_CHUNK_INFO DxgkCbReportChunkInfo;
} DXGK_MIRACAST_DISPLAY_CALLBACKS, *PDXGK_MIRACAST_DISPLAY_CALLBACKS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_MIRACAST_DISPLAY_CALLBACKS structure contains pointers to functions that define the wireless display (Miracast) callback interface that the display miniport driver can call to send messages and report encode chunk info.
MiracastHandleA driver-supplied handle to the Miracast display device.
DxgkCbMiracastSendMessageA pointer to the display port driver's DxgkCbMiracastSendMessage function.
DxgkCbReportChunkInfoA pointer to the display port driver's DxgkCbReportChunkInfo function.