NET_BUFFER_LIST_FIRST_NB - NtDoc

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

#define NET_BUFFER_LIST_FIRST_NB(_NBL) ((_NBL)->FirstNetBuffer)

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

NET_BUFFER_LIST_FIRST_NB macro

Description

NET_BUFFER_LIST_FIRST_NB is a macro that NDIS drivers use to get the first NET_BUFFER structure in a NET_BUFFER_LIST structure.

Syntax

#define NET_BUFFER_LIST_FIRST_NB(_NBL) ((_NBL)->FirstNetBuffer)

Parameters

_NBL

A pointer to a NET_BUFFER_LIST structure.

Return value

NET_BUFFER_LIST_FIRST_NB returns a pointer to the first NET_BUFFER structure in the indicated NET_BUFFER_LIST structure.

Remarks

NET_BUFFER_LIST_FIRST_NB gets the return value from the FirstNetBuffer member of the NET_BUFFER_LIST structure.

See also

NET_BUFFER

NET_BUFFER_LIST