D3DKMT_QUERYADAPTERINFO structure (d3dkmthk.h)

The D3DKMT_QUERYADAPTERINFO structure retrieves various information that describes the adapter.

Syntax

typedef struct _D3DKMT_QUERYADAPTERINFO {
  D3DKMT_HANDLE           hAdapter;
  KMTQUERYADAPTERINFOTYPE Type;
  VOID                    *pPrivateDriverData;
  UINT                    PrivateDriverDataSize;
} D3DKMT_QUERYADAPTERINFO;

Members

hAdapter

D3DKMT_HANDLE hAdapter

A handle to the adapter that information is retrieved about.

Type

KMTQUERYADAPTERINFOTYPE Type

Indicates the type of information to retrieve.

pPrivateDriverData

_Inout_bytecount_(PrivateDriverDataSize) void * pPrivateDriverData

A pointer to a memory region, which is interpreted based on the value of Type.

PrivateDriverDataSize

UINT PrivateDriverDataSize

The size, in bytes, of the buffer that pPrivateDriverData points to.

Requirements

Requirement Value
Minimum supported client Supported starting with Windows Vista.
Header d3dkmthk.h (include D3dkmthk.h)

See also