// windot11.h
typedef struct _DOT11_RATE_SET {
ULONG uRateSetLength;
UCHAR ucRateSet[DOT11_RATE_SET_MAX_LENGTH];
} DOT11_RATE_SET, *PDOT11_RATE_SET;
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_RATE_SET structure defines the set of data rates that the 802.11 station supports.
uRateSetLengthThe number of entries in the ucRateSet array.
ucRateSetThe set of data rates.
typedef struct _DOT11_RATE_SET {
ULONG uRateSetLength;
UCHAR ucRateSet[DOT11_RATE_SET_MAX_LENGTH];
} DOT11_RATE_SET, *PDOT11_RATE_SET;
The values that are specified in the ucRateSet array define the data rates at which the 802.11 station may transmit and receive data. Each value is an index into the table of data rates that are returned by the driver for a query of OID_DOT11_DATA_RATE_MAPPING_ENTRY.
OID_DOT11_DATA_RATE_MAPPING_ENTRY
OID_DOT11_OPERATIONAL_RATE_SET