// dispmprt.h
DXGKDDI_QUERYDIAGNOSTICTYPESSUPPORT DxgkddiQuerydiagnostictypessupport;
NTSTATUS DxgkddiQuerydiagnostictypessupport(
IN_CONST_PVOID MiniportDeviceContext,
INOUT_PDXGKARG_QUERYDIAGNOSTICTYPESSUPPORT pArgQueryDiagnosticTypesSupport
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The OS calls the DXGKDDI_QUERYDIAGNOSTICTYPESSUPPORT callback function to discover what types of diagnostic the driver supports for the passed diagnostic category.
MiniportDeviceContextA handle to a context block associated with a display adapter.
pArgQueryDiagnosticTypesSupportPointer to a DXGKARG_QUERYDIAGNOSTICTYPESSUPPORT structure.
Returns NTSTATUS.
//Declaration
DXGKDDI_QUERYDIAGNOSTICTYPESSUPPORT DxgkddiQuerydiagnostictypessupport;
// Definition
NTSTATUS DxgkddiQuerydiagnostictypessupport
(
IN_CONST_PVOID MiniportDeviceContext
INOUT_PDXGKARG_QUERYDIAGNOSTICTYPESSUPPORT pArgQueryDiagnosticTypesSupport
)
{...}
DXGKDDI_QUERYDIAGNOSTICTYPESSUPPORT *PDXGKDDI_QUERYDIAGNOSTICTYPESSUPPORT