// windot11.h
typedef struct DOT11_VWIFI_ATTRIBUTES {
NDIS_OBJECT_HEADER Header;
ULONG uTotalNumOfEntries;
#if ...
DOT11_VWIFI_COMBINATION *Combinations[];
#else
DOT11_VWIFI_COMBINATION Combinations[1];
#endif
} DOT11_VWIFI_ATTRIBUTES, *PDOT11_VWIFI_ATTRIBUTES;
View the official Windows Driver Kit DDI reference
No description available.
[!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_ATTRIBUTES structure defines the virtualization attributes of the miniport driver and 802.11 station when operating in Virtual WiFi mode.
Header
The type, revision, and size of the DOT11_VWIFI_ATTRIBUTES structure. This member is formatted as an NDIS_OBJECT_HEADER structure.
The miniport driver must set the members of Header to the following values:
This member must be set to NDIS_OBJECT_TYPE_DEFAULT.
This member must be set to DOT11_VWIFI_ATTRIBUTES_REVISION_1.
This member must be set to sizeof(DOT11_VWIFI_ATTRIBUTES).
For more information about these members, see NDIS_OBJECT_HEADER.
Combinations[*]
The maximum number of entries that the Combinations array can contain.
Combinations[1]
The list of supported combinations of 802.11 MAC entities that an 802.11 miniport driver can simultaneously support when it is virtualized. Each entry in this list is specified through an array of DOT11_VWIFI_COMBINATION, DOT11_VWIFI_COMBINATION_V2, or DOT11_VWIFI_COMBINATION_V3 structures.