// nblaccessors.h
#define NET_BUFFER_LIST_STATUS(_NBL) ((_NBL)->Status)
View the official Windows Driver Kit DDI referenceNo description available.
NET_BUFFER_LIST_STATUS is a macro that NDIS drivers use to access the StatusCode member of a NET_BUFFER_LIST structure.
#define NET_BUFFER_LIST_STATUS(_NBL) ((_NBL)->Status)
_NBLA pointer to a NET_BUFFER_LIST structure.
NET_BUFFER_LIST_STATUS returns the value of the StatusCode member of the indicated NET_BUFFER_LIST structure.
Miniport drivers and NDIS intermediate drivers can use StatusCode for their own purposes.