EVT_IDD_CX_ADAPTER_INIT_FINISHED - NtDoc

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

EVT_IDD_CX_ADAPTER_INIT_FINISHED EvtIddCxAdapterInitFinished;

NTSTATUS EvtIddCxAdapterInitFinished(
  IDDCX_ADAPTER AdapterObject,
  const IDARG_IN_ADAPTER_INIT_FINISHED *pInArgs
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

EVT_IDD_CX_ADAPTER_INIT_FINISHED callback function

Description

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

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.