WIFI_PHY_CAPABILITIES structure (wificx.h)

The WIFI_PHY_CAPABILITIES structure describes the PHY capabilities for a WiFiCx device.

Syntax

typedef struct _WIFI_PHY_CAPABILITIES {
  ULONG         Size;
  ULONG         NumPhyTypes;
  WIFI_PHY_INFO *PhyInfoList;
} WIFI_PHY_CAPABILITIES;

Members

Size

The sum (in bytes) of the sizes of all contained elements.

NumPhyTypes

The number of PHY types supported.

PhyInfoList

A pointer to a list of WIFI_PHY_INFO structures.

Remarks

Client drivers pass WIFI_PHY_CAPABILITIES as a parameter to WifiDeviceSetPhyCapabilities to report PHY capabilities to WiFiCx.

Requirements

Requirement Value
Minimum supported client Windows 11
Minimum supported server Windows Server 2022
Header wificx.h

See also

WifiDeviceSetPhyCapabilities

WIFI_PHY_INFO