DOT11_AVAILABLE_FREQUENCY_LIST - NtDoc

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

typedef struct _DOT11_AVAILABLE_FREQUENCY_LIST {
  NDIS_OBJECT_HEADER Header;
  ULONG              uNumOfEntries;
  ULONG              uTotalNumOfEntries;
  ULONG              uFrequencyValue[1];
} DOT11_AVAILABLE_FREQUENCY_LIST, *PDOT11_AVAILABLE_FREQUENCY_LIST;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_DOT11_AVAILABLE_FREQUENCY_LIST 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_AVAILABLE_FREQUENCY_LIST structure specifies the list of available frequencies that the NIC can operate with.

Members

The type, revision, and size of the DOT11_AVAILABLE_FREQUENCY_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:

Type

This member must be set to NDIS_OBJECT_TYPE_DEFAULT.

Revision

This member must be set to DOT11_AVAILABLE_FREQUENCY_LIST_REVISION_1.

Size

This member must be set to sizeof(DOT11_AVAILABLE_FREQUENCY_LIST).

For more information about these members, see NDIS_OBJECT_HEADER.

uNumOfEntries

The number of entries in the uFrequencyValue array.

uTotalNumOfEntries

The maximum number of entries that the uFrequencyValue array can contain.

uFrequencyValue

An array that specifies the list of available frequencies that the NIC can operate with.

Syntax

typedef struct _DOT11_AVAILABLE_FREQUENCY_LIST {
  NDIS_OBJECT_HEADER Header;
  ULONG              uNumOfEntries;
  ULONG              uTotalNumOfEntries;
  ULONG              uFrequencyValue[1];
} DOT11_AVAILABLE_FREQUENCY_LIST, *PDOT11_AVAILABLE_FREQUENCY_LIST;

Remarks

This structure is used with OID_DOT11_AVAILABLE_FREQUENCY_LIST.

See also

OID_DOT11_AVAILABLE_FREQUENCY_LIST

NDIS_OBJECT_HEADER