NdisUnchainBufferAtBack - NtDoc

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

VOID NdisUnchainBufferAtBack(
  [in, out] IN OUT PNDIS_PACKET Packet,
  [out]     OUT PNDIS_BUFFER    *Buffer
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndisunchainbufferatback)

NdisUnchainBufferAtBack function

Description

Note NDIS 5. x has been deprecated and is superseded by NDIS 6. x. For new NDIS driver development, see Network Drivers Starting with Windows Vista. For information about porting NDIS 5. x drivers to NDIS 6. x, see Porting NDIS 5.x Drivers to NDIS 6.0.

NdisUnchainBufferAtBack removes the buffer descriptor at the end of the chain of buffer descriptors for a given packet.

Parameters

Packet [in, out]

Pointer to the packet descriptor.

Buffer [out]

Pointer to a caller-supplied variable in which this function returns a pointer to the removed buffer descriptor. If no buffer is chained to the given packet, this variable is set to NULL.

Remarks

See also