// wdm.h
typedef enum _IO_CONTAINER_INFORMATION_CLASS {
IoSessionStateInformation,
IoMaxContainerInformationClass
} IO_CONTAINER_INFORMATION_CLASS;
View the official Windows Driver Kit DDI referenceNo description available.
The IO_CONTAINER_INFORMATION_CLASS enumeration contains constants that indicate the classes of system information that a kernel-mode driver can request.
IoSessionStateInformationSession state information. A driver uses this enumeration constant to request information about a user session.
IoMaxContainerInformationClassSpecifies the maximum value in this enumeration type.
To request system information, a driver calls the IoGetContainerInformation routine and sets this routine's InformationClass parameter to an IO_CONTAINER_NOTIFICATION_CLASS constant (other than IoMaxContainerInformationClass). Currently, IoGetContainerInformation supports only InformationClass = IoSessionStateInformation.