// videoagp.h
PAGP_RELEASE_VIRTUAL PagpReleaseVirtual;
VOID PagpReleaseVirtual(
[in] IN PVOID HwDeviceExtension,
[in] IN PVOID VirtualReserveContext
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The AgpReleaseVirtual function frees system memory reserved by a previous call to AgpReserveVirtual.
HwDeviceExtension [in]Pointer to the miniport driver's device extension.
VirtualReserveContext [in]Is the context handle that identifies the reserved virtual address range to be released. This context was obtained from AgpReleaseVirtual.
The miniport driver must call AgpFreeVirtual to unmap all committed memory within the range identified by VirtualReserveContext before calling AgpReleaseVirtual to release it.