IoUnregisterShutdownNotification 함수(wdm.h)

IoUnregisterShutdownNotification 루틴은 종료 알림 큐에서 등록된 드라이버를 제거합니다.

구문

void IoUnregisterShutdownNotification(
  [in] PDEVICE_OBJECT DeviceObject
);

매개 변수

[in] DeviceObject

드라이버의 디바이스 개체에 대한 포인터입니다.

반환 값

없음

설명

IoUnregisterShutdownNotification 은 드라이버가 이전에 IoRegisterShutdownNotification 또는 IoRegisterLastChanceShutdownNotification 을 지정된 DeviceObject와 함께 호출한 경우에만 드라이버에서 호출할 수 있습니다. 이 루틴은 일반적으로 드라이버의 언로드 루틴에서 호출됩니다.

IoUnregisterShutdownNotification을 호출하면 지정된 DeviceObject에 등록된 모든 종료 알림이 취소됩니다.

요구 사항

요구 사항
지원되는 최소 클라이언트 Windows 2000부터 사용할 수 있습니다.
대상 플랫폼 유니버설
헤더 wdm.h(Wdm.h, Ntddk.h, Ntifs.h 포함)
라이브러리 NtosKrnl.lib
DLL NtosKrnl.exe
IRQL PASSIVE_LEVEL
DDI 규정 준수 규칙 HwStorPortProhibitedDDIs(storport), IrqlIoPassive5(wdm), PowerIrpDDis(wdm)

추가 정보

IoRegisterLastChanceShutdownNotification

IoRegisterShutdownNotification