TRANSACTION_INFORMATION_CLASS枚举 (wdm.h)

TRANSACTION_INFORMATION_CLASS 枚举指定 ZwSetInformationTransaction 可以设置的信息类型,ZwQueryInformationTransaction 可以检索 事务管理器对象

语法

typedef enum _TRANSACTION_INFORMATION_CLASS {
  TransactionBasicInformation,
  TransactionPropertiesInformation,
  TransactionEnlistmentInformation,
  TransactionSuperiorEnlistmentInformation
} TRANSACTION_INFORMATION_CLASS;

常数

 
TransactionBasicInformation
有关事务管理器对象的信息存储在 TRANSACTION_BASIC_INFORMATION 结构中。
TransactionPropertiesInformation
有关事务管理器对象的信息存储在 TRANSACTION_PROPERTIES_INFORMATION 结构中。
TransactionEnlistmentInformation
有关事务管理器对象的信息存储在 TRANSACTION_ENLISTMENTS_INFORMATION 结构中。
TransactionSuperiorEnlistmentInformation
有关事务管理器对象的信息存储在 TRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION 结构中。

要求

要求 价值
最低支持的客户端 从 Windows Vista 开始可用。
标头 wdm.h (包括 Wdm.h、Ntddk.h、Ntifs.h)

另请参阅

ZwQueryInformationTransaction

ZwSetInformationTransaction