Partager via


structure MIRACAST_DRIVER_INTERFACE (netdispumdddi.h)

Contient des pointeurs vers des fonctions d’affichage sans fil (Miracast) implémentées par le pilote en mode utilisateur Miracast.

Syntaxe

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;

Membres

Size

Taille, en octets, de la structure MIRACAST_DRIVER_INTERFACE retournée par le pilote lorsque le système d’exploitation appelle la fonction QueryMiracastDriverInterface.

CreateMiracastContext

Pointeur vers la fonction CreateMiracastContext du pilote.

DestroyMiracastContext

Pointeur vers la fonction destroyMiracastContext du pilote.

StartMiracastSession

Pointeur vers la fonction StartMiracastSession du pilote.

StopMiracastSession

Pointeur vers la fonction StopMiracastSession du pilote.

HandleKernelModeMessage

Pointeur vers la fonction HandleKernelModeMessage du pilote.

Exigences

Exigence Valeur
client minimum pris en charge Windows 8.1
serveur minimum pris en charge Windows Server 2012 R2
d’en-tête netdispumdddi.h (include Netdispumdddi.h)

Voir aussi

CreateMiracastContext

DestroyMiracastContext

HandleKernelModeMessage

QueryMiracastDriverInterface

StartMiracastSession

StopMiracastSession