// netadapter.h
typedef struct _NET_ADAPTER_WAKE_PACKET_FILTER_CAPABILITIES {
ULONG Size;
BOOLEAN PacketFilterMatch;
} NET_ADAPTER_WAKE_PACKET_FILTER_CAPABILITIES;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_ADAPTER_WAKE_PACKET_FILTER_CAPABILITIES structure describes a net adapter's wake on LAN (WoL) capabilities for waking from a packet filter match.
SizeThe size of this structure, in bytes.
PacketFilterMatchA boolean value that describes if the net adapter is capable of waking from a packet filter match.
Call NET_ADAPTER_WAKE_PACKET_FILTER_CAPABILITIES_INIT to initialize this structure, then call NetAdapterWakeSetPacketFilterCapabilities to set the net adapter's packet filter WoL capabilities. Client drivers typically call NetAdapterWakeSetPacketFilterCapabilities when starting a net adapter, but before calling NetAdapterStart.
NET_ADAPTER_WAKE_PACKET_FILTER_CAPABILITIES_INIT
NetAdapterWakeSetPacketFilterCapabilities