// 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 referenceNo description available.
[!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.
WDI_DATA_RATE_NON_STANDARD:0x01The data rate is not a standard data rate defined in the IEEE 802.11 standards.
WDI_DATA_RATE_RX_RATE:0x02The data rate can be used for RX.
WDI_DATA_RATE_TX_RATE:0x04The data rate can be used for TX.
The WDI_DATA_RATE_FLAGS enum is a member of the WDI_DATA_RATE_ENTRY structure.
[!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.
WDI_DATA_RATE_NON_STANDARDThe data rate is not a standard data rate defined in the IEEE 802.11 standards.
WDI_DATA_RATE_RX_RATEThe data rate can be used for RX.
WDI_DATA_RATE_TX_RATEThe data rate can be used for TX.