NdisFreeNetBufferListContext - NtDoc

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

NDIS_EXPORTED_ROUTINE VOID NdisFreeNetBufferListContext(
  [in] NET_BUFFER_LIST *NetBufferList,
  [in] USHORT          ContextSize
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-nblapi-ndisfreenetbufferlistcontext)

NdisFreeNetBufferListContext function

Description

Call the NdisFreeNetBufferListContext function to release context space in the NET_BUFFER_LIST_CONTEXT structure of a NET_BUFFER_LIST structure.

Parameters

NetBufferList [in]

A pointer to a previously allocated NET_BUFFER_LIST structure.

ContextSize [in]

The amount of context space to free.

Remarks

NdisFreeNetBufferListContext releases context space that was allocated in a previous call to NdisAllocateNetBufferListContext. If NdisAllocateNetBufferListContext allocated memory to satisfy in the call to NdisAllocateNetBufferListContext, NdisFreeNetBufferListContext frees the allocated memory.

See also

NET_BUFFER_LIST

NET_BUFFER_LIST_CONTEXT

NdisAllocateNetBufferListContext