DOT11_VWIFI_COMBINATION_V3 structure (windot11.h)

Important  The Native 802.11 Wireless LAN interface is deprecated in Windows 10 and later. Please use the WLAN Device Driver Interface (WDI) instead. For more information about WDI, see WLAN Universal Windows driver model.
 
The DOT11_VWIFI_COMBINATION_V3 structure contains the combination of MAC entities that an 802.11 wireless miniport driver simultaneously supports when virtualized.

Syntax

typedef struct _DOT11_VWIFI_COMBINATION_V3 {
  NDIS_OBJECT_HEADER Header;
  ULONG              uNumInfrastructure;
  ULONG              uNumAdhoc;
  ULONG              uNumSoftAP;
  ULONG              uNumVirtualStation;
  ULONG              uNumWFDGroup;
} DOT11_VWIFI_COMBINATION_V3, *PDOT11_VWIFI_COMBINATION_V3;

Members

Header

The type, revision, and size of the DOT11_VWIFI_COMBINATION_V3 structure. The required settings for the members of Header are the following.

Member Setting
Type NDIS_OBJECT_TYPE_DEFAULT
Revision DOT11_VWIFI_COMBINATION_REVISION_3
Size DOT11_SIZEOF_VWIFI_COMBINATION_REVISION_3

uNumInfrastructure

The number of 802.11 infrastructure stations supported.

uNumAdhoc

The number of adhoc stations supported.

uNumSoftAP

The number of soft access point stations supported.

uNumVirtualStation

The number of virtual stations supported.

uNumWFDGroup

The number of simultaneous operational Wi-Fi Direct (WFD) groups supported.

Remarks

When uNumWFDGroup > 0, the miniport driver is required to support one more 802.11 MAC entity in addition to the number in uNumWFDGroup. This additional entity is used for WFD device functionality and is the only entity configured as DOT11_OPERATION_MODE_WFD_DEVICE.

Requirements

Requirement Value
Minimum supported client Supported starting with Windows 8.
Header windot11.h (include Windot11.h)