// d3dkmthk.h
typedef struct _D3DKMT_DESTROYALLOCATION {
[in] D3DKMT_HANDLE hDevice;
[in] D3DKMT_HANDLE hResource;
[in] const D3DKMT_HANDLE *phAllocationList;
[in] UINT AllocationCount;
} D3DKMT_DESTROYALLOCATION;
View the official Windows Driver Kit DDI referenceNo description available.
The D3DKMT_DESTROYALLOCATION structure describes parameters for releasing allocations.
hDevice [in]A D3DKMT_HANDLE data type that represents a kernel-mode handle to the device that the resource, allocations, or both are associated with.
hResource [in]A D3DKMT_HANDLE data type that represents a kernel-mode handle to the resource that is associated with the allocations when releasing a resource. If a resource handle is specified, all of the allocations that are associated with it are automatically released.
phAllocationList [in]An array of D3DKMT_HANDLE data types that represent kernel-mode handles to the allocations. If any allocation in the list is associated with a resource, all of the allocations in the list must also be associated with the same resource. If the OpenGL ICD sets the handle in the hResource member to a non-NULL value, the ICD must set phAllocationList to NULL.
AllocationCount [in]The number of allocations in the array that phAllocationList specifies. If the OpenGL ICD sets the handle in the hResource member to a non-NULL value, the AllocationCount member is ignored by the OpenGL runtime.