NET_BUFFER_LIST_NEXT_NBL (Compact 2013)

3/26/2014

This 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

NET_BUFFER_LIST_NEXT_NBL(_NBL)

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

Header

ndis.h

See Also

Reference

NET_BUFFER_LIST Structure Macros
NET_BUFFER_LIST
NET_BUFFER_LIST_DATA