DOT11_VWIFI_COMBINATION 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 structure specifies the combination of 802.11 MAC entities that an 802.11 miniport driver can simultaneously support when it is virtualized.

Syntax

typedef struct _DOT11_VWIFI_COMBINATION {
  NDIS_OBJECT_HEADER Header;
  ULONG              uNumInfrastructure;
  ULONG              uNumAdhoc;
  ULONG              uNumSoftAP;
} DOT11_VWIFI_COMBINATION, *PDOT11_VWIFI_COMBINATION;

Members

Header

The type, revision, and size of the DOT11_VWIFI_COMBINATION structure. This member is formatted as an NDIS_OBJECT_HEADER structure.

The miniport driver must set the members of Header to the following values:

Type

This member must be set to NDIS_OBJECT_TYPE_DEFAULT.

Revision

This member must be set to DOT11_VWIFI_COMBINATION_REVISION_1.

Size

This member must be set to sizeof(DOT11_VWIFI_COMBINATION).

For more information about these members, see NDIS_OBJECT_HEADER.

uNumInfrastructure

The number of 802.11 infrastructure stations supported. For more information, see the following Remarks section.

uNumAdhoc

The number of Adhoc Stations supported. For more information, see the following Remarks section.

uNumSoftAP

The number of Soft AP Stations supported. For more information, see the following Remarks section.

Remarks

Starting with Windows 7, the 802.11 miniport driver must only report one or more of the following combination of member values.

  • uNumInfrastructure = 1
  • uNumAdhoc = 0
  • uNumSoftAP = 1

Requirements

Requirement Value
Minimum supported client Available in Windows 7 and later versions of the Windows operating systems.
Header windot11.h (include Ndis.h)

See also

NDIS_OBJECT_HEADER