// 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 referenceNo description available.
The TRANSACTION_ENLISTMENTS_INFORMATION structure contains information about the enlistments that are associated with a transaction object.
NumberOfEnlistmentsThe 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.
EnlistmentPairA caller-allocated array of TRANSACTION_ENLISTMENT_PAIR structures.
The TRANSACTION_ENLISTMENTS_INFORMATION structure is used with the ZwQueryInformationTransaction routine. This routine fills in the structure's members.