Condividi tramite


enumerazione IO_CONTAINER_NOTIFICATION_CLASS (wdm.h)

L'enumerazione IO_CONTAINER_NOTIFICATION_CLASS contiene costanti che indicano le classi di eventi per cui un driver in modalità kernel può registrarsi per ricevere notifiche.

Sintassi

typedef enum _IO_CONTAINER_NOTIFICATION_CLASS {
  IoSessionStateNotification,
  IoMaxContainerNotificationClass
} IO_CONTAINER_NOTIFICATION_CLASS;

Costanti

 
IoSessionStateNotification
Notifiche dello stato della sessione. Il driver usa questa costante di enumerazione per richiedere notifiche sulle modifiche apportate allo stato delle sessioni utente a cui è interessato il driver.
IoMaxContainerNotificationClass
Specifica il valore massimo in questo tipo di enumerazione.

Osservazioni

Per eseguire la registrazione per le notifiche, un driver chiama il routine IoRegisterContainerNotification e imposta il parametro NotificationClass di questa routine su una costante IO_CONTAINER_NOTIFICATION_CLASS (diversa da IoMaxContainerNotificationClass). Attualmente, IoRegisterContainerNotification supporta solo NotificationClass = IoSessionStateNotification.

Fabbisogno

Requisito Valore
client minimo supportato Supportato in Windows 7 e versioni successive del sistema operativo Windows.
intestazione wdm.h (include Wdm.h, Ntddk.h, Ntifs.h, Fltkernel.h)

Vedere anche

IoRegisterContainerNotification