// nblaccessors.h
#define NET_BUFFER_FIRST_MDL(_NB) ((_NB)->MdlChain)
View the official Windows Driver Kit DDI reference
No description available.
NET_BUFFER_FIRST_MDL is a macro that NDIS drivers use to get the first MDL in a NET_BUFFER structure.
#define NET_BUFFER_FIRST_MDL(_NB) ((_NB)->MdlChain)
_NB
A pointer to a NET_BUFFER structure.
NET_BUFFER_FIRST_MDL returns a pointer to the first MDL in a linked list of MDLs that is associated with the indicated NET_BUFFER structure.
NET_BUFFER_FIRST_MDL gets the return value from the MdlChain member of the NET_BUFFER structure.