IO_CONTAINER_NOTIFICATION_CLASS 枚举 (wdm.h)

IO_CONTAINER_NOTIFICATION_CLASS 枚举包含常量,这些常量指示内核模式驱动程序可注册以接收通知的事件类。

语法

typedef enum _IO_CONTAINER_NOTIFICATION_CLASS {
  IoSessionStateNotification,
  IoMaxContainerNotificationClass
} IO_CONTAINER_NOTIFICATION_CLASS;

常量

 
IoSessionStateNotification
会话状态通知。 驱动程序使用此枚举常量请求有关驱动程序感兴趣的用户会话状态更改的通知。
IoMaxContainerNotificationClass
指定此枚举类型中的最大值。

注解

为了注册通知,驱动程序调用 IoRegisterContainerNotification 例程,并将此例程的 NotificationClass 参数设置为 ioMaxContainerNotificationClass) 以外的IO_CONTAINER_NOTIFICATION_CLASS常量 (。 目前, IoRegisterContainerNotification 仅支持 NotificationClass = IoSessionStateNotification

要求

要求
最低受支持的客户端 在 Windows 7 及更高版本的 Windows 操作系统中受支持。
标头 wdm.h (包括 Wdm.h、Ntddk.h、Ntifs.h、Fltkernel.h)

另请参阅

IoRegisterContainerNotification