// video.h
VIDEOPORT_DEPRECATED VIDEOPORT_API VOID VideoPortReleaseBuffer(
[in] IN PVOID HwDeviceExtension,
[in] IN PVOID Buffer
);
View the official Windows Driver Kit DDI referenceNo description available.
The VideoPortReleaseBuffer function is obsolete in Windows 2000 and later. In its place, video miniport drivers should instead use VideoPortFreePool.
VideoPortReleaseBuffer deallocates a block of paged pool memory.
HwDeviceExtension [in]Pointer to the miniport driver's device extension.
Buffer [in]Specifies the address of the block of pool memory being deallocated.
None
This function releases memory allocated by VideoPortAllocateBuffer. A miniport driver must not access the memory block to which Buffer points after it has been freed.