WIFI_PHY_CAPABILITIES - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wificx-wifi_phy_capabilities)

Description

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

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.

Call WIFI_PHY_CAPABILITIES_INIT to initialize this structure and fill in its Size field. Then call WifiDeviceSetPhyCapabilities to report PHY capabilities to WiFiCx.

See also

WIFI_PHY_CAPABILITIES_INIT

WifiDeviceSetPhyCapabilities

WIFI_PHY_INFO