NetAdapterWakeSetBitmapCapabilities function (netadapter.h)

The NetAdapterWakeSetBitmapCapabilities function sets a net adapter's bitmap pattern wake on LAN (WoL) capabilities.

Syntax

void NetAdapterWakeSetBitmapCapabilities(
  [_In_] NETADAPTER                                 Adapter,
  [_In_] const NET_ADAPTER_WAKE_BITMAP_CAPABILITIES *Capabilities
);

Parameters

[_In_] Adapter

A handle to a NETADAPTER object that the client driver obtained from a previous call to NetAdapterCreate.

[_In_] Capabilities

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

Return value

None

Remarks

Client drivers must call NET_ADAPTER_WAKE_BITMAP_CAPABILITIES_INIT to initialize the NET_ADAPTER_WAKE_BITMAP_CAPABILITIES structure, then set the structure's members appropriately before calling this function. Client drivers typically call this function from within their EvtDevicePrepareHardware callback, but must call this function before calling NetAdapterStart.

Requirements

Requirement Value
Minimum supported client Windows 10, version 2004
Target Platform Universal
Header netadapter.h (include netadaptercx.h)
Library netadaptercxstub.lib
IRQL PASSIVE_LEVEL

See also

Configuring power management

NET_ADAPTER_WAKE_BITMAP_CAPABILITIES

NET_ADAPTER_WAKE_BITMAP_CAPABILITIES_INIT

NetAdapterCreate

EvtDevicePrepareHardware

NetAdapterStart