WdfControlDeviceInitSetShutdownNotification 関数 (wdfcontrol.h)

[KMDF にのみ適用]

WdfControlDeviceInitSetShutdownNotification メソッドは、コントロール デバイス オブジェクトのシャットダウン通知情報を設定します。

構文

void WdfControlDeviceInitSetShutdownNotification(
  [in] PWDFDEVICE_INIT                      DeviceInit,
  [in] PFN_WDF_DEVICE_SHUTDOWN_NOTIFICATION Notification,
  [in] UCHAR                                Flags
);

パラメーター

[in] DeviceInit

ドライバーが WdfControlDeviceInitAllocate を呼び出して取得したWDFDEVICE_INIT構造体へのポインター。

[in] Notification

ドライバーの EvtDeviceShutdownNotification イベント コールバック関数へのポインター。

[in] Flags

EvtDeviceShutdownNotification コールバック関数が呼び出されるタイミングを示す 1 つ以上のWDF_DEVICE_SHUTDOWN_FLAGS型指定フラグ。

戻り値

なし

解説

ドライバーは、WdfDeviceCreate を呼び出す前に WdfControlDeviceInitSetShutdownNotification を呼び出す必要があります。 WdfControlDeviceInitSetShutdownNotification の呼び出しの詳細については、「コントロール デバイス オブジェクトの使用」を参照してください。

WdfControlDeviceInitSetShutdownNotification を使用するコード例については、「WdfControlDeviceInitAllocate」を参照してください。

要件

要件
対象プラットフォーム ユニバーサル
最小 KMDF バージョン 1.0
Header wdfcontrol.h (Wdf.h を含む)
Library Wdf01000.sys (「Framework ライブラリのバージョン管理」を参照)。
IRQL <= DISPATCH_LEVEL
DDI コンプライアンス規則 ControlDeviceInitAPI(kmdf)DriverCreate(kmdf)KmdfIrql(kmdf)KmdfIrql2(kmdf)、KmdfIrqlExplicit(kmdf)

こちらもご覧ください

EvtDeviceShutdownNotification

WDFDEVICE_INIT

WDF_DEVICE_SHUTDOWN_FLAGS

WdfDeviceCreate