TRANSACTION_ENLISTMENTS_INFORMATION - NtDoc

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

typedef struct _TRANSACTION_ENLISTMENTS_INFORMATION {
  ULONG                       NumberOfEnlistments;
  TRANSACTION_ENLISTMENT_PAIR EnlistmentPair[1];
} TRANSACTION_ENLISTMENTS_INFORMATION, *PTRANSACTION_ENLISTMENTS_INFORMATION;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdm-_transaction_enlistments_information)

_TRANSACTION_ENLISTMENTS_INFORMATION structure

Description

The TRANSACTION_ENLISTMENTS_INFORMATION structure contains information about the enlistments that are associated with a transaction object.

Members

NumberOfEnlistments

The number of enlistments that are associated with a transaction object. This is also the number of elements in the array that the EnlistmentPair member specifies.

EnlistmentPair

A caller-allocated array of TRANSACTION_ENLISTMENT_PAIR structures.

Remarks

The TRANSACTION_ENLISTMENTS_INFORMATION structure is used with the ZwQueryInformationTransaction routine. This routine fills in the structure's members.

See also

TRANSACTION_ENLISTMENT_PAIR

TRANSACTION_INFORMATION_CLASS

ZwQueryInformationTransaction