WDI_DATA_RATE_FLAGS - NtDoc

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

typedef enum _WDI_DATA_RATE_FLAGS {
  WDI_DATA_RATE_NON_STANDARD = 0x01,
  WDI_DATA_RATE_RX_RATE = 0x02,
  WDI_DATA_RATE_TX_RATE = 0x04
} WDI_DATA_RATE_FLAGS;
View the official Windows Driver Kit DDI reference
// wditypes.h

typedef enum _WDI_DATA_RATE_FLAGS {
  WDI_DATA_RATE_NON_STANDARD,
  WDI_DATA_RATE_RX_RATE,
  WDI_DATA_RATE_TX_RATE
} WDI_DATA_RATE_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-dot11wificxtypes-wdi_data_rate_flags)

Description

[!IMPORTANT] This topic is part of the WiFiCx driver model. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The previous Wi-Fi driver model WDI is in maintenance mode and will only receive high priority fixes.

The WDI_DATA_RATE_FLAGS enumeration defines the data rate flags.

Constants

WDI_DATA_RATE_NON_STANDARD:0x01

The data rate is not a standard data rate defined in the IEEE 802.11 standards.

WDI_DATA_RATE_RX_RATE:0x02

The data rate can be used for RX.

WDI_DATA_RATE_TX_RATE:0x04

The data rate can be used for TX.

Remarks

The WDI_DATA_RATE_FLAGS enum is a member of the WDI_DATA_RATE_ENTRY structure.

See also

WDI_DATA_RATE_ENTRY


Windows Driver Kit DDI reference (ne-wditypes-_wdi_data_rate_flags)

_WDI_DATA_RATE_FLAGS enumeration

Description

[!IMPORTANT] This topic is part of the WDI driver model released in Windows 10. The WDI driver model is in maintenance mode and will only receive high priority fixes. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features.

The WDI_DATA_RATE_FLAGS enumeration defines the data rate flags.

Constants

WDI_DATA_RATE_NON_STANDARD

The data rate is not a standard data rate defined in the IEEE 802.11 standards.

WDI_DATA_RATE_RX_RATE

The data rate can be used for RX.

WDI_DATA_RATE_TX_RATE

The data rate can be used for TX.