// dot11wificxtypes.h
typedef enum _WDI_BLUETOOTH_COEXISTENCE_SUPPORT {
WDI_BLUETOOTH_COEXISTENCE_UNKNOWN = 0,
WDI_BLUETOOTH_COEXISTENCE_PERFORMANCE_MAINTAINED = 1,
WDI_BLUETOOTH_COEXISTENCE_WIFI_DEGRADED_TO_1x1 = 2,
WDI_BLUETOOTH_COEXISTENCE_WIFI_THROUGHPUT_DEGRADED = 3,
WDI_BLUETOOTH_COEXISTENCE_MUTUALLY_EXCLUSIVE = 4,
WDI_BLUETOOTH_COEXISTENCE_MAX = 5
} WDI_BLUETOOTH_COEXISTENCE_SUPPORT;
View the official Windows Driver Kit DDI reference// wditypes.h
typedef enum _WDI_BLUETOOTH_COEXISTENCE_SUPPORT {
WDI_BLUETOOTH_COEXISTENCE_UNKNOWN,
WDI_BLUETOOTH_COEXISTENCE_PERFORMANCE_MAINTAINED,
WDI_BLUETOOTH_COEXISTENCE_WIFI_DEGRADED_TO_1x1,
WDI_BLUETOOTH_COEXISTENCE_WIFI_THROUGHPUT_DEGRADED,
WDI_BLUETOOTH_COEXISTENCE_MUTUALLY_EXCLUSIVE,
WDI_BLUETOOTH_COEXISTENCE_MAX
} WDI_BLUETOOTH_COEXISTENCE_SUPPORT;
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_BLUETOOTH_COEXISTENCE_SUPPORT enumeration defines Bluetooth coexistence support values.
WDI_BLUETOOTH_COEXISTENCE_UNKNOWN:0Unknown.
WDI_BLUETOOTH_COEXISTENCE_PERFORMANCE_MAINTAINED:1Wi-Fi and Bluetooth work at the same performance level during coexistence.
WDI_BLUETOOTH_COEXISTENCE_WIFI_DEGRADED_TO_1x1:2Wi-Fi centered. On a 2X2 device, Wi-Fi and Bluetooth coexists. Wi-Fi performance is reduced to 1X1 level.
WDI_BLUETOOTH_COEXISTENCE_WIFI_THROUGHPUT_DEGRADED:3Bluetooth centered. When coexisting, Bluetooth has priority and restricts Wi-Fi performance.
WDI_BLUETOOTH_COEXISTENCE_MUTUALLY_EXCLUSIVE:4Wi-Fi and Bluetooth are mutually exclusive. One of the two stops working.
WDI_BLUETOOTH_COEXISTENCE_MAX:5[!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_BLUETOOTH_COEXISTENCE_SUPPORT enumeration defines Bluetooth coexistence support values.
WDI_BLUETOOTH_COEXISTENCE_UNKNOWNUnknown.
WDI_BLUETOOTH_COEXISTENCE_PERFORMANCE_MAINTAINEDWi-Fi and Bluetooth work at the same performance level during coexistence.
WDI_BLUETOOTH_COEXISTENCE_WIFI_DEGRADED_TO_1x1Wi-Fi centered. On a 2X2 device, Wi-Fi and Bluetooth coexists. Wi-Fi performance is reduced to 1X1 level.
WDI_BLUETOOTH_COEXISTENCE_WIFI_THROUGHPUT_DEGRADEDBluetooth centered. When coexisting, Bluetooth has priority and restricts Wi-Fi performance.
WDI_BLUETOOTH_COEXISTENCE_MUTUALLY_EXCLUSIVEWi-Fi and Bluetooth are mutually exclusive. One of the two stops working.
WDI_BLUETOOTH_COEXISTENCE_MAX