// netadapter.h
typedef struct _NET_ADAPTER_WAKE_BITMAP_CAPABILITIES {
ULONG Size;
BOOLEAN BitmapPattern;
SIZE_T MaximumPatternCount;
SIZE_T MaximumPatternSize;
} NET_ADAPTER_WAKE_BITMAP_CAPABILITIES;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_ADAPTER_WAKE_BITMAP_CAPABILITIES structure describes a net adapter's wake on LAN (WoL) capabilities for waking from a bitmap pattern.
SizeThe size of this structure, in bytes.
BitmapPatternA boolean value that describes if the net adapter is capable of waking from a bitmap pattern.
MaximumPatternCountThe maximum number of bitmap patterns that the hardware supports.
MaximumPatternSizeThe maximum size, in bytes, for the bitmap patterns that the hardware supports.
Call NET_ADAPTER_WAKE_BITMAP_CAPABILITIES_INIT to initialize this structure, then call NetAdapterWakeSetBitmapCapabilities to set the net adapter's bitmap pattern WoL capabilities. Client drivers typically call NetAdapterWakeSetBitmapCapabilities when starting a net adapter, but before calling NetAdapterStart.
NET_ADAPTER_WAKE_BITMAP_CAPABILITIES_INIT
NetAdapterWakeSetBitmapCapabilities