// windot11.h
typedef struct _DOT11_SUPPORTED_ANTENNA {
ULONG uAntennaListIndex;
BOOLEAN bSupportedAntenna;
} DOT11_SUPPORTED_ANTENNA, *PDOT11_SUPPORTED_ANTENNA;
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_SUPPORTED_ANTENNA structure defines an antenna entry in a DOT11_SUPPORTED_ANTENNA_LIST structure.
uAntennaListIndexA value, from 1 through 255, that uniquely identifies the antenna.
bSupportedAntennaA Boolean value that indicates, if TRUE, that the antenna referenced by the uAntennaListIndex value supports transmit and receive operations.
typedef struct _DOT11_SUPPORTED_ANTENNA {
ULONG uAntennaListIndex;
BOOLEAN bSupportedAntenna;
} DOT11_SUPPORTED_ANTENNA, *PDOT11_SUPPORTED_ANTENNA;
The meaning of the bSupportedAntenna member depends on the OID that it is used with. For example, if bSupportedAntenna is TRUE when an antenna list is queried through OID_DOT11_SUPPORTED_RX_ANTENNA, the antenna referenced by the uAntennaListIndex member is supported for receive operations.
OID_DOT11_SUPPORTED_TX_ANTENNA
OID_DOT11_SUPPORTED_RX_ANTENNA