// d3dkmthk.h
typedef struct _D3DKMT_QUERYADAPTERINFO {
D3DKMT_HANDLE hAdapter;
KMTQUERYADAPTERINFOTYPE Type;
VOID *pPrivateDriverData;
UINT PrivateDriverDataSize;
} D3DKMT_QUERYADAPTERINFO;
View the official Windows Driver Kit DDI referenceNo description available.
The D3DKMT_QUERYADAPTERINFO structure retrieves various information that describes the adapter.
hAdapter[in] A handle to the adapter that information is retrieved about.
Type[in] A KMTQUERYADAPTERINFOTYPE enumeration value that indicates the type of information to retrieve.
pPrivateDriverData[in/out] Pointer to a memory region that is interpreted based on the value of Type.
PrivateDriverDataSize[in/out] The size, in bytes, of the buffer that pPrivateDriverData points to.