// d3dkmddi.h
typedef struct _DXGKARGCB_GETCAPTUREADDRESS {
[in] D3DKMT_HANDLE hAllocation;
[out] UINT SegmentId;
[out] PHYSICAL_ADDRESS PhysicalAddress;
} DXGKARGCB_GETCAPTUREADDRESS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARGCB_GETCAPTUREADDRESS structure contains the arguments used in the DXGKCB_GETCAPTUREADDRESS callback function, to retrieve information about a capture buffer that is associated with an allocation.
hAllocation [in]A handle to the allocation that is associated with the capture buffer to retrieve information on.
SegmentId [out]The identifier of the segment for the capture buffer. The allocation that is associated with the capture buffer is currently paged in this segment.
PhysicalAddress [out]The physical address of the capture buffer.