// wdm.h
typedef enum _TRANSACTION_INFORMATION_CLASS {
TransactionBasicInformation,
TransactionPropertiesInformation,
TransactionEnlistmentInformation,
TransactionSuperiorEnlistmentInformation
} TRANSACTION_INFORMATION_CLASS;
View the official Windows Driver Kit DDI referenceNo description available.
The TRANSACTION_INFORMATION_CLASS enumeration specifies the type of information that ZwSetInformationTransaction can set and ZwQueryInformationTransaction can retrieve for a transaction manager object.
TransactionBasicInformationInformation about a transaction manager object is stored in a TRANSACTION_BASIC_INFORMATION structure.
TransactionPropertiesInformationInformation about a transaction manager object is stored in a TRANSACTION_PROPERTIES_INFORMATION structure.
TransactionEnlistmentInformationInformation about a transaction manager object is stored in a TRANSACTION_ENLISTMENTS_INFORMATION structure.
TransactionSuperiorEnlistmentInformationInformation about a transaction manager object is stored in a TRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION structure.