// wificx.h
typedef struct _WIFI_BAND_CAPABILITIES {
ULONG Size;
ULONG NumBands;
WIFI_BAND_INFO *BandInfoList;
} WIFI_BAND_CAPABILITIES;
View the official Windows Driver Kit DDI referenceNo description available.
The WIFI_BAND_CAPABILITIES structure describes the band capabilities for a WiFiCx device.
SizeThe sum (in bytes) of the sizes of all contained elements.
NumBandsThe number of bands supported.
BandInfoListA pointer to a list of WIFI_BAND_INFO structures.
Call WIFI_BAND_CAPABILITIES_INIT to initialize this structure and fill in its Size field. Then call WifiDeviceSetBandCapabilities to report band capabilities to WiFiCx.