// videoagp.h
PAGP_RELEASE_PHYSICAL PagpReleasePhysical;
VOID PagpReleasePhysical(
[in] IN PVOID HwDeviceExtension,
[in] IN PVOID PhysicalReserveContext
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The AgpReleasePhysical function frees a physical address range reserved by a previous call to AgpReservePhysical.
HwDeviceExtension [in]Pointer to the miniport driver's device extension.
PhysicalReserveContext [in]Is the context handle that identifies the reserved physical address range to be released. This context was obtained from AgpReservePhysical.
The miniport driver must call AgpFreePhysical to unmap all committed memory within the address range identified by PhysicalReserveContext before calling AgpReleasePhysical.