// nblaccessors.h
#define NET_BUFFER_SHARED_MEM_NEXT_SEGMENT(_SHI) ((_SHI)->NextSharedMemorySegment)
View the official Windows Driver Kit DDI referenceNo description available.
The NET_BUFFER_SHARED_MEM_NEXT_SEGMENT macro gets the next shared memory segment from a NET_BUFFER_SHARED_MEMORY structure.
#define NET_BUFFER_SHARED_MEM_NEXT_SEGMENT(_SHI) ((_SHI)->NextSharedMemorySegment)
_SHIA pointer to a NET_BUFFER_SHARED_MEMORY structure.
NET_BUFFER_SHARED_MEM_NEXT_SEGMENT returns a pointer to a NET_BUFFER_SHARED_MEMORY structure or returns NULL.
An NDIS 6.20 or later driver can use the NET_BUFFER_SHARED_MEM_NEXT_SEGMENT macro to get the next shared memory segment in a linked list of NET_BUFFER_SHARED_MEMORY structures that are associated with a NET_BUFFER structure. NET_BUFFER_SHARED_MEM_NEXT_SEGMENT gets a pointer to the next NET_BUFFER_SHARED_MEMORY structure from the NextSharedMemorySegment member of the NET_BUFFER_SHARED_MEMORY structure. The SharedMemoryInfo member of the NET_BUFFER structure contains the first NET_BUFFER_SHARED_MEMORY structure in the linked list.