// netdispumdddi.h
typedef struct _MIRACAST_DRIVER_INTERFACE {
UINT Size;
PFN_CREATE_MIRACAST_CONTEXT CreateMiracastContext;
PFN_DESTROY_MIRACAST_CONTEXT DestroyMiracastContext;
PFN_START_MIRACAST_SESSION StartMiracastSession;
PFN_STOP_MIRACAST_SESSION StopMiracastSession;
PFN_HANDLE_KMD_MESSAGE HandleKernelModeMessage;
} MIRACAST_DRIVER_INTERFACE, *PMIRACAST_DRIVER_INTERFACE;
View the official Windows Driver Kit DDI referenceNo description available.
Contains pointers to wireless display (Miracast) functions that are implemented by the Miracast user-mode driver.
SizeThe size, in bytes, of the MIRACAST_DRIVER_INTERFACE structure that the driver returns when the operating system calls the QueryMiracastDriverInterface function.
CreateMiracastContextA pointer to the driver's CreateMiracastContext function.
DestroyMiracastContextA pointer to the driver's DestroyMiracastContext function.
StartMiracastSessionA pointer to the driver's StartMiracastSession function.
StopMiracastSessionA pointer to the driver's StopMiracastSession function.
HandleKernelModeMessageA pointer to the driver's HandleKernelModeMessage function.