NDIS_NBL_REMOVE_MEDIA_SPECIFIC_INFO_EX macro (ndis.h)

The NDIS_NBL_REMOVE_MEDIA_SPECIFIC_INFO_EX macro removes a media-specific information data structure from a linked list of such structures that are associated with a NET_BUFFER_LIST structure.

Syntax

void NDIS_NBL_REMOVE_MEDIA_SPECIFIC_INFO_EX(
   _NBL,
   _MediaSpecificInfo
);

Parameters

_NBL

A pointer to a NET_BUFFER_LIST structure.

_MediaSpecificInfo

A pointer to an NDIS_NBL_MEDIA_SPECIFIC_INFORMATION_EX structure that has a Tag member matching the Tag member of the information structure that should be removed.

Return value

None

Remarks

Any NDIS 6.20 driver can use NDIS_NBL_REMOVE_MEDIA_SPECIFIC_INFO_EX to remove an NDIS_NBL_MEDIA_SPECIFIC_INFORMATION_EX structure from a list of media-specific information. To specify the type information to remove, specify an NDIS_NBL_MEDIA_SPECIFIC_INFORMATION_EX structure with a matching Tag member in the _MediaSpecificInfo parameter.

Requirements

Requirement Value
Minimum supported client Supported in NDIS 6.20 and later.
Target Platform Universal
Header ndis.h

See also

NDIS_NBL_REMOVE_MEDIA_SPECIFIC_INFO

NDIS_NBL_MEDIA_SPECIFIC_INFORMATION

NET_BUFFER_LIST