PFND3DKMT_QUERYADAPTERINFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3dkmthk.h

PFND3DKMT_QUERYADAPTERINFO Pfnd3dkmtQueryadapterinfo;

NTSTATUS Pfnd3dkmtQueryadapterinfo(
  const D3DKMT_QUERYADAPTERINFO *unnamedParam1
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dkmthk-pfnd3dkmt_queryadapterinfo)

PFND3DKMT_QUERYADAPTERINFO callback function

Description

The PFND3DKMT_QUERYADAPTERINFO callback function retrieves adapter information from an adapter handle.

Parameters

unnamedParam1

[in/out] Pointer to a D3DKMT_QUERYADAPTERINFO structure in which the adapter information is retrieved.

Return value

Pfnd3dkmtQueryadapterinfo returns an NTSTATUS code such as one of the following:

Return Code Description
STATUS_SUCCESS Adapter information was successfully retrieved.
STATUS_DEVICE_REMOVED The adapter was stopped.
STATUS_INVALID_PARAMETER Parameters were validated and determined to be incorrect.
STATUS_NO_MEMORY Not enough memory could be allocated to satisfy the operation.

Prototype

//Declaration

PFND3DKMT_QUERYADAPTERINFO Pfnd3dkmtQueryadapterinfo;

// Definition

NTSTATUS Pfnd3dkmtQueryadapterinfo
(
    const D3DKMT_QUERYADAPTERINFO *
)
{...}

Remarks

See also

D3DKMT_QUERYADAPTERINFO

D3DKMTQueryAdapterInfo