NET_BUFFER_LIST_NEXT_NBL - NtDoc

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

#define NET_BUFFER_LIST_NEXT_NBL(_NBL) ((_NBL)->Next)

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

NET_BUFFER_LIST_NEXT_NBL macro

Description

NET_BUFFER_LIST_NEXT_NBL is a macro that NDIS drivers use to get the next NET_BUFFER_LIST structure in a linked list of NET_BUFFER_LIST structures.

Syntax

#define NET_BUFFER_LIST_NEXT_NBL(_NBL) ((_NBL)->Next)

Parameters

_NBL

A pointer to a NET_BUFFER_LIST structure.

Return value

NET_BUFFER_LIST_NEXT_NBL returns a pointer to the next NET_BUFFER_LIST structure in the linked list of NET_BUFFER_LIST structures, or it returns NULL if the end of the linked list is reached.

Remarks

NET_BUFFER_LIST_NEXT_NBL gets the return value from the Next member of the NET_BUFFER_LIST_DATA structure in the NET_BUFFER_LIST structure that the _NBL parameter points to.

See also

NET_BUFFER_LIST

NET_BUFFER_LIST_DATA