Partager via


structure WIFI_DEVICE_CONFIG (wificx.h)

La structure WIFI_DEVICE_CONFIG contient des pointeurs vers les fonctions de rappel spécifiques au wiFiCx d’un pilote client. Le pilote client doit fournir une structure WIFI_DEVICE_CONFIG initialisée en tant que paramètre d’entrée à WiFiDeviceInitialize.

Syntaxe

typedef struct _WIFI_DEVICE_CONFIG {
  ULONG                                   Size;
  ULONG                                   WdiVersion;
  PFN_WIFI_DEVICE_SEND_COMMAND            SendCommand;
  PFN_WIFI_DEVICE_CREATE_ADAPTER          CreateAdapter;
  PFN_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE CreateWifiDirectDevice;
} WIFI_DEVICE_CONFIG;

Membres

Size

Taille de cette structure WIFI_DEVICE_CONFIG , en octets.

WdiVersion

Version WDI.

SendCommand

Pointeur vers l’implémentation par le pilote client de la fonction de rappel EVT_WIFI_DEVICE_SEND_COMMAND .

CreateAdapter

Pointeur vers l’implémentation par le pilote client de la fonction de rappel EVT_WIFI_DEVICE_CREATE_ADAPTER .

CreateWifiDirectDevice

Pointeur vers l’implémentation du pilote client de la fonction de rappel EVT_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE .

Remarques

Appelez WIFI_DEVICE_CONFIG_INIT pour initialiser cette structure.

Configuration requise

Condition requise Valeur
Client minimal pris en charge Windows 11
Serveur minimal pris en charge Windows Server 2022
En-tête wificx.h

Voir aussi

WiFiDeviceInitialize

EVT_MBB_DEVICE_CREATE_ADAPTER

EVT_WIFI_DEVICE_SEND_COMMAND

EVT_WIFI_DEVICE_CREATE_WIFIDIRECTDEVICE

WIFI_DEVICE_CONFIG_INIT