// nblapi.h
NDIS_EXPORTED_ROUTINE VOID NdisFreeNetBufferPool(
[in] NDIS_HANDLE PoolHandle
);
View the official Windows Driver Kit DDI referenceNo description available.
Call the NdisFreeNetBufferPool function to free NET_BUFFER structure pools that are created with the NdisAllocateNetBufferPool function.
PoolHandle [in]The pool handle for the NET_BUFFER structure pool to be freed.
You should free all the NET_BUFFER structures in a pool before freeing the NET_BUFFER structure pool. Call the NdisFreeNetBuffer function to free each NET_BUFFER structure.