NetAdapterWakeSetMediaChangeCapabilities function (netadapter.h)
The NetAdapterWakeSetMediaChangeCapabilities function sets a net adapter's media change wake on LAN (WoL) capabilities.
Syntax
void NetAdapterWakeSetMediaChangeCapabilities(
[_In_] NETADAPTER Adapter,
[_In_] const NET_ADAPTER_WAKE_MEDIA_CHANGE_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_MEDIA_CHANGE_CAPABILITIES structure.
Return value
None
Remarks
Client drivers must call NET_ADAPTER_WAKE_MEDIA_CHANGE_CAPABILITIES_INIT to initialize the NET_ADAPTER_WAKE_MEDIA_CHANGE_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 |
Minimum UMDF version | 2.33 |
Header | netadapter.h (include netadaptercx.h) |
Library | netadaptercxstub.lib |
IRQL | PASSIVE_LEVEL |
See also
NET_ADAPTER_WAKE_MEDIA_CHANGE_CAPABILITIES