DOT11_AVAILABLE_FREQUENCY_LIST structure (windot11.h)

Important  The Native 802.11 Wireless LAN interface is deprecated in Windows 10 and later. Please use the WLAN Device Driver Interface (WDI) instead. For more information about WDI, see WLAN Universal Windows driver model.
 
The DOT11_AVAILABLE_FREQUENCY_LIST structure 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;

Members

Header

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[1]

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

Remarks

This structure is used with OID_DOT11_AVAILABLE_FREQUENCY_LIST.

Requirements

Requirement Value
Minimum supported client Available in Windows 7 and later versions of the Windows operating systems.
Header windot11.h (include Ndis.h)

See also

OID_DOT11_AVAILABLE_FREQUENCY_LIST

NDIS_OBJECT_HEADER