// nblaccessors.h
#define NET_BUFFER_NEXT_NB(_NB) ((_NB)->Next)
View the official Windows Driver Kit DDI referenceNo description available.
NET_BUFFER_NEXT_NB is a macro that NDIS drivers use to get a pointer to the next NET_BUFFER structure in a linked list of NET_BUFFER structures.
#define NET_BUFFER_NEXT_NB(_NB) ((_NB)->Next)
_NBA pointer to a NET_BUFFER structure.
NET_BUFFER_NEXT_NB returns a pointer to the next NET_BUFFER structure in the linked list of NET_BUFFER structures, or it returns NULL if the end of the linked list is reached.
NET_BUFFER_NEXT_NB gets the return value from the Next member of the NET_BUFFER structure.