// windot11.h
typedef struct _DOT11_AVAILABLE_CHANNEL_LIST {
NDIS_OBJECT_HEADER Header;
ULONG uNumOfEntries;
ULONG uTotalNumOfEntries;
ULONG uChannelNumber[1];
} DOT11_AVAILABLE_CHANNEL_LIST, *PDOT11_AVAILABLE_CHANNEL_LIST;
View the official Windows Driver Kit DDI referenceNo 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_AVAILABLE_CHANNEL_LIST structure specifies the available operating frequency channel list of the DSSS, HRDSSS, and ERP PHY configurations that the NIC can operate with.
HeaderThe type, revision, and size of the DOT11_AVAILABLE_CHANNEL_LIST 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_AVAILABLE_CHANNEL_LIST_REVISION_1.
This member must be set to sizeof(DOT11_AVAILABLE_CHANNEL_LIST).
For more information about these members, see NDIS_OBJECT_HEADER.
uNumOfEntriesThe number of entries in the uChannelNumber array.
uTotalNumOfEntriesThe maximum number of entries that the uChannelNumber array can contain.
uChannelNumberAn array that specifies the list of available operating frequency channels of the DSSS, HRDSSS, and ERP PHY configurations that the NIC can operate with.
typedef struct _DOT11_AVAILABLE_CHANNEL_LIST {
NDIS_OBJECT_HEADER Header;
ULONG uNumOfEntries;
ULONG uTotalNumOfEntries;
ULONG uChannelNumber[1];
} DOT11_AVAILABLE_CHANNEL_LIST, *PDOT11_AVAILABLE_CHANNEL_LIST;
This structure is used with OID_DOT11_AVAILABLE_CHANNEL_LIST.
OID_DOT11_AVAILABLE_CHANNEL_LIST