// nblaccessors.h
#define NET_BUFFER_LIST_NEXT_NBL(_NBL) ((_NBL)->Next)
View the official Windows Driver Kit DDI reference
No description available.
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.
#define NET_BUFFER_LIST_NEXT_NBL(_NBL) ((_NBL)->Next)
_NBL
A pointer to a NET_BUFFER_LIST structure.
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.
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.