// dispmprt.h
DXGKCB_MIRACAST_SEND_MESSAGE_CALLBACK DxgkcbMiracastSendMessageCallback;
VOID DxgkcbMiracastSendMessageCallback(
PVOID CallbackContext,
PIO_STATUS_BLOCK pIoStatusBlock
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Called in kernel mode when the message that was sent to the user-mode driver with a call to the DxgkCbMiracastSendMessage function has completed or has been canceled.
CallbackContextA pointer to the driver-supplied callback context. The operating system passes this context to the driver-supplied callback routine after the operation has completed.
pIoStatusBlockA pointer to a driver-supplied buffer to hold the returned IO_STATUS_BLOCK structure for the completed or canceled user-mode message. This structure holds the status of the I/O call and the number of bytes that the user-mode driver wrote to the output buffer.
This function can be called simultaneously from multiple execution threads.
The operating system guarantees that this function follows the zero level synchronization mode as defined in Threading and Synchronization Zero Level.
DXGK_MIRACAST_DISPLAY_CALLBACKS
DxgkCbMiracastSendMessageCallback