TRANSACTION_OUTCOME - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

typedef enum _TRANSACTION_OUTCOME {
  TransactionOutcomeUndetermined,
  TransactionOutcomeCommitted,
  TransactionOutcomeAborted
} TRANSACTION_OUTCOME;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wdm-_transaction_outcome)

_TRANSACTION_OUTCOME enumeration

Description

The TRANSACTION_OUTCOME enumeration defines the outcomes (results) that KTM can assign to a transaction.

Constants

TransactionOutcomeUndetermined

The transaction has not yet been committed or rolled back.

TransactionOutcomeCommitted

The transaction has been committed.

TransactionOutcomeAborted

The transaction has been rolled back.

Remarks

The TRANSACTION_OUTCOME enumeration is used in the TRANSACTION_BASIC_INFORMATION structure.

See also

TRANSACTION_BASIC_INFORMATION