NET_BUFFER_LIST_DATA structure (ndis/nbl.h)

The NET_BUFFER_LIST_DATA structure contains management data for the NET_BUFFER structures that are linked to a NET_BUFFER_LIST structure.

Syntax

typedef struct _NET_BUFFER_LIST_DATA {
  NET_BUFFER_LIST *Next;
  NET_BUFFER      *FirstNetBuffer;
} NET_BUFFER_LIST_DATA, *PNET_BUFFER_LIST_DATA;

Members

Next

A pointer to the next NET_BUFFER_LIST structure in a linked list of NET_BUFFER_LIST structures. If this structure is the last NET_BUFFER_LIST structure in the list, this member is NULL.

FirstNetBuffer

A pointer to the first NET_BUFFER structure in the linked list of NET_BUFFER structures.

Remarks

The NET_BUFFER_LIST_HEADER structure contains a NET_BUFFER_LIST_DATA structure.

Requirements

Requirement Value
Minimum supported client Supported in NDIS 6.0 and later.
Header ndis/nbl.h (include ndis.h)

See also

NET_BUFFER

NET_BUFFER_LIST

NET_BUFFER_LIST_HEADER