DOT11_VWIFI_ATTRIBUTES structure (windot11.h)
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.
Syntax
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;
Members
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:
Type
This member must be set to NDIS_OBJECT_TYPE_DEFAULT.
Revision
This member must be set to DOT11_VWIFI_ATTRIBUTES_REVISION_1.
Size
This member must be set to sizeof(DOT11_VWIFI_ATTRIBUTES).
For more information about these members, see NDIS_OBJECT_HEADER.
uTotalNumOfEntries
Combinations[*]
Combinations[1]
Requirements
Requirement | Value |
---|---|
Minimum supported client | Available in Windows 7 and later versions of the Windows operating system. |
Header | windot11.h (include Ndis.h) |