WifiDeviceGetWakeSourceList - NtDoc

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

void WifiDeviceGetWakeSourceList(
  WDFDEVICE             Device,
  WIFI_WAKE_SOURCE_LIST *List
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wificxwakesourcelist-wifidevicegetwakesourcelist)

Description

The WifiDeviceGetWakeSourceList function gets the list of wake sources for a WiFiCx net adapter.

Parameters

Device

The WDFDEVICE object that is associated with the net adapter (or multiple adapters if the client driver has more than one for this device).

List

A pointer to a driver-allocated and initialized WIFI_WAKE_SOURCE_LIST structure.

Remarks

Call WIFI_WAKE_SOURCE_LIST_INIT to initialize the WIFI_WAKE_SOURCE_LIST structure, then call this function to retrieve the wake source list.

The client driver must only call WifiDeviceGetWakeSourceList during a power transition, typically from its EVT_WDF_DEVICE_ARM_WAKE_FROM_SX, EVT_WDF_DEVICE_ARM_WAKE_FROM_S0, or EVT_NET_DEVICE_PREVIEW_WAKE_SOURCE callback function. Otherwise, the call results in a system bugcheck.

See also

WIFI_WAKE_SOURCE_LIST

WIFI_WAKE_SOURCE_LIST_INIT