NET_BUFFER_HEADER union (ndis/nbl.h)

The NET_BUFFER_HEADER structure specifies header information for the NET_BUFFER structure.

Syntax

typedef union _NET_BUFFER_HEADER {
  NET_BUFFER_DATA NetBufferData;
  SLIST_HEADER    Link;
} NET_BUFFER_HEADER, *PNET_BUFFER_HEADER;

Members

NetBufferData

A NET_BUFFER_DATA structure.

Link

Reserved for NDIS.

Remarks

NDIS maintains the information in the NET_BUFFER_HEADER union.

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_DATA