// nblaccessors.h
#define NET_BUFFER_LIST_FIRST_NB(_NBL) ((_NBL)->FirstNetBuffer)
View the official Windows Driver Kit DDI reference
No description available.
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.
#define NET_BUFFER_LIST_FIRST_NB(_NBL) ((_NBL)->FirstNetBuffer)
_NBL
A pointer to a NET_BUFFER_LIST structure.
NET_BUFFER_LIST_FIRST_NB returns a pointer to the first NET_BUFFER structure in the indicated NET_BUFFER_LIST structure.
NET_BUFFER_LIST_FIRST_NB gets the return value from the FirstNetBuffer member of the NET_BUFFER_LIST structure.