NET_BUFFER_LIST_STATUS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// nblaccessors.h

#define NET_BUFFER_LIST_STATUS(_NBL) ((_NBL)->Status)
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-nblaccessors-net_buffer_list_status)

NET_BUFFER_LIST_STATUS macro

Description

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.

See also

NET_BUFFER_LIST