PFN_IDDCXGETVERSION - NtDoc

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

PFN_IDDCXGETVERSION PfnIddcxgetversion;

NTSTATUS * PfnIddcxgetversion(
  [in]  PIDD_DRIVER_GLOBALS DriverGlobals,
  [out] IDARG_OUT_GETVERSION *pOutArgs
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-iddcx-pfn_iddcxgetversion)

PFN_IDDCXGETVERSION callback function

Description

PFN_IDDCXGETVERSION is a pointer to an OS callback function that gets the IddCx (Indirect Display Driver Class eXtension) version.

Parameters

DriverGlobals [in]

Pointer to an IDD_DRIVER_GLOBALS structure containing system-defined per-driver data.

pOutArgs [out]

Pointer to an IDARG_OUT_GETVERSION structure in which the driver will return the current IddCx version.

Return value

(NTSTATUS) PFN_IDDCXGETVERSION returns STATUS_SUCCESS if the operation succeeds. Otherwise, it returns an appropriate NTSTATUS error code.

Remarks

An indirect display driver (IDD) should not use this pointer to directly call the function that it points to. IDDs should instead call IddCxGetVersion.

See also

IDARG_OUT_GETVERSION

IddCxGetVersion*