// ntddndis.h
typedef enum _NDIS_MAC_PACKET_TYPE {
NdisMacPacketTypeUndefined,
NdisMacPacketTypeUnicast,
NdisMacPacketTypeMulticast,
NdisMacPacketTypeBroadcast,
NdisMacPacketTypeMaximum
} NDIS_MAC_PACKET_TYPE, *PNDIS_MAC_PACKET_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_MAC_PACKET_TYPE enumeration identifies the type of a destination address field in a media access control (MAC) header to be filtered.
NdisMacPacketTypeUndefinedAn undefined MAC packet type.
NdisMacPacketTypeUnicastA unicast MAC packet type.
NdisMacPacketTypeMulticastA multicast MAC packet type.
NdisMacPacketTypeBroadcastA broadcast MAC packet type.
NdisMacPacketTypeMaximumThe maximum value for this enumeration. This value might change in future versions of the NDIS header files and binaries.
The NDIS_MAC_PACKET_TYPE enumeration is used in the NDIS_RECEIVE_FILTER_FIELD_PARAMETERS structure.
NDIS_RECEIVE_FILTER_FIELD_PARAMETERS