// wificx.h
typedef struct _WIFI_PHY_CAPABILITIES {
ULONG Size;
ULONG NumPhyTypes;
WIFI_PHY_INFO *PhyInfoList;
} WIFI_PHY_CAPABILITIES;
View the official Windows Driver Kit DDI referenceNo description available.
The WIFI_PHY_CAPABILITIES structure describes the PHY capabilities for a WiFiCx device.
SizeThe sum (in bytes) of the sizes of all contained elements.
NumPhyTypesThe number of PHY types supported.
PhyInfoListA pointer to a list of WIFI_PHY_INFO structures.
Client drivers pass WIFI_PHY_CAPABILITIES as a parameter to WifiDeviceSetPhyCapabilities to report PHY capabilities to WiFiCx.
Call WIFI_PHY_CAPABILITIES_INIT to initialize this structure and fill in its Size field. Then call WifiDeviceSetPhyCapabilities to report PHY capabilities to WiFiCx.