// 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 referenceNo description available.
EVT_IDD_CX_ADAPTER_INIT_FINISHED is called by the OS to inform the driver that the adapter initialization has completed.
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.
(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.