// dispmprt.h
DXGKCB_AGP_FREE_POOL DxgkcbAgpFreePool;
NTSTATUS DxgkcbAgpFreePool(
[in] IN HANDLE Context,
[in] IN PVOID VirtualAddress
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKCB_AGP_FREE_POOL callback function frees AGP memory that was previously allocated by AgpAllocatePool.
Context [in]A handle to a context block that is associated with an AGP interface. The display miniport driver previously received this handle in the Context member of the DXGK_AGP_INTERFACE structure that was filled in by DxgkCbQueryServices.
VirtualAddress [in]The base virtual address of the AGP allocation that is to be freed. This is the virtual address that was previously returned in the VirtualAddress output parameter of the AgpAllocatePool function.
AgpFreePool returns STATUS_SUCCESS if it succeeds. Otherwise, it returns one of the error codes defined in Ntstatus.h.
None.