Partager via


DXGKCB_GET_DEVICE_INFORMATION fonction de rappel (dispmprt.h)

La fonction DxgkCbGetDeviceInformation obtient des informations, notamment le chemin d’accès du Registre et une liste de ressources traduites, sur un adaptateur d’affichage spécifié.

Syntaxe

DXGKCB_GET_DEVICE_INFORMATION DxgkcbGetDeviceInformation;

NTSTATUS DxgkcbGetDeviceInformation(
  [in]  HANDLE DeviceHandle,
  [out] PDXGK_DEVICE_INFO DeviceInfo
)
{...}

Paramètres

[in] DeviceHandle

Handle qui représente une carte d’affichage. Le pilote miniport d’affichage a précédemment obtenu ce handle dans le membre DeviceHandle de la structure DXGKRNL_INTERFACE qui a été passé à la fonction DxgkDdiStartDevice .

[out] DeviceInfo

Pointeur vers une structure DXGK_DEVICE_INFO qui reçoit des informations sur l’adaptateur d’affichage.

Valeur retournée

DxgkCbGetDeviceInformation retourne STATUS_SUCCESS si elle réussit ; sinon, il retourne STATUS_INVALID_PARAMETER.

Configuration requise

Condition requise Valeur
Client minimal pris en charge Windows Vista
Plateforme cible Desktop (Expérience utilisateur)
En-tête dispmprt.h (inclure Dispmprt.h)
IRQL PASSIVE_LEVEL

Voir aussi

DXGK_DEVICE_INFO

DxgkDdiStartDevice