// d3dkmthk.h
typedef struct _D3DKMT_QUERY_PHYSICAL_ADAPTER_PNP_KEY {
UINT PhysicalAdapterIndex;
D3DKMT_PNP_KEY_TYPE PnPKeyType;
WCHAR *pDest;
UINT *pCchDest;
} D3DKMT_QUERY_PHYSICAL_ADAPTER_PNP_KEY;
View the official Windows Driver Kit DDI referenceNo description available.
The D3DKMT_QUERY_PHYSICAL_ADAPTER_PNP_KEY structure holds information to query the physical adapter PNP key.
PhysicalAdapterIndexThe physical adapter index in the LDA (linked display adapter) chain.
PnPKeyTypeA D3DKMT_PNP_KEY_TYPE enumeration value that specifies the type of the PNP key being queried.
pDestPointer to a buffer that receives the requested PnP key as a wide-character string.
pCchDestPointer to a variable that specifies the size of the pDest buffer, in characters. On input, it should contain the maximum number of characters that can be stored in the buffer. On output, it is updated to reflect the actual number of characters written to pDest, including the null terminator.