NET_BUFFER_LIST_STATUS macro (ndis/nblaccessors.h)

NET_BUFFER_LIST_STATUS is a macro that NDIS drivers use to access the StatusCode member of a NET_BUFFER_LIST structure.

Syntax

#define NET_BUFFER_LIST_STATUS(_NBL) ((_NBL)->Status)

Parameters

_NBL

A pointer to a NET_BUFFER_LIST structure.

Return value

NET_BUFFER_LIST_STATUS returns the value of the StatusCode member of the indicated NET_BUFFER_LIST structure.

Remarks

Miniport drivers and NDIS intermediate drivers can use StatusCode for their own purposes.

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

NET_BUFFER_LIST