次の方法で共有


AcxDeviceInitInitialize 関数 (acxdevice.h)

クライアント ドライバーは、WdfDeviceCreate を呼び出す前に、EVT_WDF_DRIVER_DEVICE_ADD コールバックで AcxDeviceInitInitialize を呼び出す必要があります。

構文

NTSTATUS AcxDeviceInitInitialize(
  PWDFDEVICE_INIT        DeviceInit,
  PACX_DEVICEINIT_CONFIG Config
);

パラメーター

DeviceInit

初期化するデバイスを表す WDFDEVICE_INIT 構造体へのポインター。

Config

ACX_DEVICEINIT_CONFIG_INIT関数を呼び出すことによって初期化されたACX_DEVICEINIT_CONFIG構造体へのポインター。

戻り値

呼び出しが成功した場合、AcxDeviceInitInitialize はSTATUS_SUCCESSを返します。 それ以外の場合は、 NTSTATUS エラー コードを返します。

解説

WDFDEVICE             Parent;
NTSTATUS              status;
PWDFDEVICE_INIT       devInit = NULL;
ACX_DEVICEINIT_CONFIG devInitCfg;

// Code to initialize WDFDEVICE...

//
// Create a child audio device for this circuit.
//
devInit = WdfPdoInitAllocate(Parent);

if (NULL == devInit) 
{
    status = STATUS_INSUFFICIENT_RESOURCES;
    ASSERT(FALSE);
    goto exit;
}

//
// Allow ACX to add any pre-requirement it needs on this device.
//
ACX_DEVICEINIT_CONFIG_INIT(&devInitCfg);

devInitCfg.Flags |= AcxDeviceInitConfigRawDevice; 

status = AcxDeviceInitInitialize(devInit, &devInitCfg);

if (!NT_SUCCESS(status)) 
{
    ASSERT(FALSE);
    goto exit;
}

ACX の要件

最小 ACX バージョン: 1.0

ACX バージョンの詳細については、「 ACX バージョンの概要」を参照してください。

要件

要件
Header acxdevice.h
IRQL PASSIVE_LEVEL

こちらもご覧ください