NET_BUFFER_LIST_NEXT_NBL macro (ndis/nblaccessors.h)

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.

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

NET_BUFFER_LIST_DATA