NET_BUFFER_NEXT_NB - NtDoc

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

#define NET_BUFFER_NEXT_NB(_NB) ((_NB)->Next)
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

NET_BUFFER_NEXT_NB macro

Description

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.

Syntax

#define NET_BUFFER_NEXT_NB(_NB) ((_NB)->Next)

Parameters

_NB

A pointer to a NET_BUFFER structure.

Return value

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.

Remarks

NET_BUFFER_NEXT_NB gets the return value from the Next member of the NET_BUFFER structure.

See also

NET_BUFFER