EVT_IDD_CX_ADAPTER_INIT_FINISHED callback function (iddcx.h)

EVT_IDD_CX_ADAPTER_INIT_FINISHED is called by the OS to inform the driver that the adapter initialization has completed.

Syntax

EVT_IDD_CX_ADAPTER_INIT_FINISHED EvtIddCxAdapterInitFinished;

NTSTATUS EvtIddCxAdapterInitFinished(
  IDDCX_ADAPTER AdapterObject,
  const IDARG_IN_ADAPTER_INIT_FINISHED *pInArgs
)
{...}

Parameters

AdapterObject

[in] A handle provided by the driver used by the OS to reference the adapter in a call to the driver.

pInArgs

[in] A pointer to a IDARG_IN_ADAPTER_INIT_FINISHED structure.

Return value

(NTSTATUS) If the operation is successful, the callback function must return STATUS_SUCCESS, or another status value for which NT_SUCCESS(status) equals TRUE. Otherwise, an appropriate NTSTATUS error code.

Requirements

Requirement Value
Minimum supported client Windows 10
Minimum supported server Windows Server 2016
Target Platform Windows
Header iddcx.h
IRQL requires_same