// d3d10umddi.h
typedef struct D3D10_2DDIARG_GETCAPS {
[in] D3D10_2DDICAPS_TYPE Type;
[in] VOID *pInfo;
[out] VOID *pData;
[in/out] UINT DataSize;
} D3D10_2DDIARG_GETCAPS;
View the official Windows Driver Kit DDI referenceNo description available.
The D3D10_2DDIARG_GETCAPS structure contains display device capabilities of a particular type.
Type [in]The type of capabilities to retrieve. The Microsoft Direct3D runtime can supply one of the values from the D3D10_2DDICAPS_TYPE enumeration, possibly along with information in the memory block that is pointed to by pInfo, to retrieve particular capability data in the memory block at pData.
pInfo [in]A pointer to a memory block that contains data that specifies the specific condition on which to retrieve the capabilities of the type that is specified by the Type member.
pData [out]A pointer to a memory block that is filled with capabilities of the type that is specified by the Type member and possibly determined by the condition that is specified in the memory block at pInfo.
DataSize [in/out]The size, in bytes, of the memory block at pData.