// iddcx.h
NTSTATUS IddCxAdapterInitAsync(
[in] const IDARG_IN_ADAPTER_INIT *pInArgs,
[out] IDARG_OUT_ADAPTER_INIT *pOutArgs
);
View the official Windows Driver Kit DDI referenceNo description available.
IddCxAdapterInitAsync is an asynchronous initiation function called by the indirect display driver (IDD) to create a WDDM graphics adapter.
pInArgs [in]Pointer to an IDARG_IN_ADAPTER_INIT structure containing the information needed to initialize an adapter that will be hosted on a WDF device.
pOutArgs [out]Pointer to an IDARG_OUT_ADAPTER_INIT structure in which the IDD returns information about the initialized adapter.
(NTSTATUS) The method returns S_OK if the operation succeeds. Otherwise, it returns an appropriate NTSTATUS error code.