DOT11_VWIFI_COMBINATION_V2 - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// windot11.h

typedef struct _DOT11_VWIFI_COMBINATION_V2 {
  NDIS_OBJECT_HEADER Header;
  ULONG              uNumInfrastructure;
  ULONG              uNumAdhoc;
  ULONG              uNumSoftAP;
  ULONG              uNumVirtualStation;
} DOT11_VWIFI_COMBINATION_V2, *PDOT11_VWIFI_COMBINATION_V2;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-windot11-_dot11_vwifi_combination_v2)

_DOT11_VWIFI_COMBINATION_V2 structure

Description

[!Important] WiFiCx is the new Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The WDI driver model is now in maintenance mode and will only receive high priority fixes.

The DOT11_VWIFI_COMBINATION_V2 structure specifies the combination of 802.11 MAC entities that an 802.11 miniport driver can simultaneously support when it is virtualized.

Members

The type, revision, and size of the DOT11_VWIFI_COMBINATION_V2 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_2.

Size

This member must be set to sizeof(DOT11_VWIFI_COMBINATION_V2).

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.

uNumVirtualStation

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

Syntax

typedef struct _DOT11_VWIFI_COMBINATION_V2 {
  NDIS_OBJECT_HEADER Header;
  ULONG              uNumInfrastructure;
  ULONG              uNumAdhoc;
  ULONG              uNumSoftAP;
  ULONG              uNumVirtualStation;
} DOT11_VWIFI_COMBINATION_V2, *PDOT11_VWIFI_COMBINATION_V2;

Remarks

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

No 802.11 Virtual Station

One 802.11 Virtual Station

See also

NDIS_OBJECT_HEADER