NDIS_NBL_ADD_MEDIA_SPECIFIC_INFO macro (ndis.h)

Important

This macro is supported in NDIS 6.0 and 6.1. For NDIS 6.20 and later, use NDIS_NBL_ADD_MEDIA_SPECIFIC_INFO_EX.

The NDIS_NBL_ADD_MEDIA_SPECIFIC_INFO macro adds a media-specific information data structure to the beginning of a linked list of such structures that are associated with a NET_BUFFER_LIST structure.

Syntax

void NDIS_NBL_ADD_MEDIA_SPECIFIC_INFO(
   _NBL,
   _MediaSpecificInfo
);

Parameters

_NBL

A pointer to a NET_BUFFER_LIST structure.

_MediaSpecificInfo

A pointer to an NDIS_NBL_MEDIA_SPECIFIC_INFORMATION structure to add to the linked list.

Return value

None

Remarks

Any NDIS 6.0 or 6.1 driver can use NDIS_NBL_ADD_MEDIA_SPECIFIC_INFO to add media-specific information to a NET_BUFFER_LIST structure.

Requirements

Requirement Value
Minimum supported client Supported in NDIS 6.0 and 6.1. For NDIS 6.20 and later, use NDIS_NBL_ADD_MEDIA_SPECIFIC_INFO_EX.
Target Platform Universal
Header ndis.h

See also

NDIS_NBL_ADD_MEDIA_SPECIFIC_INFO_EX

NDIS_NBL_MEDIA_SPECIFIC_INFORMATION

NET_BUFFER_LIST