WifiDeviceSetDeviceCapabilities - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wificx.h

NTSTATUS WifiDeviceSetDeviceCapabilities(
  WDFDEVICE                      Device,
  const WIFI_DEVICE_CAPABILITIES *DeviceCapabilities
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wificx-wifidevicesetdevicecapabilities)

Description

The WifiDeviceSetDeviceCapabilities function sets the device capabilities for a WiFiCx device.

Parameters

Device

A handle to a framework device object the client driver obtained from a previous call to WdfDeviceCreate.

DeviceCapabilities

A pointer to a client driver-allocated and initialized WIFI_DEVICE_CAPABILITIES structure.

Return value

Returns STATUS_SUCCESS if the operation succeeds. Otherwise, this function may return an appropriate NTSTATUS error code.

Remarks

Client drivers typically call WifiDeviceSetDeviceCapabilities within EvtDevicePrepareHardware.

Call WIFI_DEVICE_CAPABILITIES_INIT to initialize the WIFI_DEVICE_CAPABILITIES structure and fill in its Size field. Then call WifiDeviceSetDeviceCapabilities to report device capabilities to WiFiCx.

For more information see Default (station) adapter creation flow.

See also

WIFI_DEVICE_CAPABILITIES_INIT

WIFI_DEVICE_CAPABILITIES

Default (station) adapter creation flow