// netadapter.h
typedef struct _NET_ADAPTER_WAKE_MEDIA_CHANGE_CAPABILITIES {
ULONG Size;
BOOLEAN MediaConnect;
BOOLEAN MediaDisconnect;
} NET_ADAPTER_WAKE_MEDIA_CHANGE_CAPABILITIES;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_ADAPTER_WAKE_MEDIA_CHANGE_CAPABILITIES structure describes a net adapter's wake on LAN (WoL) capabilities for waking from a media change event.
SizeThe size of this structure, in bytes.
MediaConnectA boolean value that describes if the net adapter is capable of waking from a media connect event.
MediaDisconnectA boolean value that describes if the net adapter is capable of waking from a media disconnect event.
Call NET_ADAPTER_WAKE_MEDIA_CHANGE_CAPABILITIES_INIT to initialize this structure, then call NetAdapterWakeSetMediaChangeCapabilities to set the net adapter's media change WoL capabilities. Client drivers typically call NetAdapterWakeSetMediaChangeCapabilities when starting a net adapter, but before calling NetAdapterStart.
NET_ADAPTER_WAKE_MEDIA_CHANGE_CAPABILITIES_INIT
NetAdapterWakeSetMediaChangeCapabilities