// d3d10umddi.h
typedef struct D3D11DDI_HANDLESIZE {
[in] D3D11DDI_HANDLETYPE HandleType;
[in] SIZE_T DriverPrivateSize;
} D3D11DDI_HANDLESIZE;
View the official Windows Driver Kit DDI referenceNo description available.
The D3D11DDI_HANDLESIZE structure describes a handle.
HandleType [in]A D3D11DDI_HANDLETYPE-typed value that identifies the handle type.
DriverPrivateSize [in]The size, in bytes, of the driver-private memory space that holds the handle data.
The driver's CheckDeferredContextHandleSizes function verifies the size of the driver-private memory space that holds the handle data of a deferred context handle and returns the size in the DriverPrivateSize member of the D3D11DDI_HANDLESIZE structure that the pHandleSize parameter points to.
CheckDeferredContextHandleSizes