NET_BUFFER_LIST_FLAGS macro (ndis/nblaccessors.h)

NET_BUFFER_LIST_FLAGS is a macro that NDIS drivers use to get the flags associated with a NET_BUFFER_LIST structure.

Syntax

#define NET_BUFFER_LIST_FLAGS(_NBL) ((_NBL)->Flags)

Parameters

_NBL

A pointer to a NET_BUFFER_LIST structure.

Return value

NET_BUFFER_LIST_FLAGS returns the Flags member of the indicated NET_BUFFER_LIST structure.

Remarks

For definitions of possible NET_BUFFER_LIST structure flags, see NDIS_BUFFER_LIST.

Requirements

Requirement Value
Minimum supported client Supported in NDIS 6.0 and later.
Target Platform Universal
Header ndis/nblaccessors.h (include ndis.h)

See also

NDIS_BUFFER_LIST