Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IDtcTransaction.cs
Go to the documentation of this file.
2
3namespace System.Transactions;
4
5[ComImport]
6[Guid("0fb15084-af41-11ce-bd2b-204c4f4f5020")]
7[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
8public interface IDtcTransaction
9{
10 void Commit(int retaining, [MarshalAs(UnmanagedType.I4)] int commitType, int reserved);
11
12 void Abort(IntPtr reason, int retaining, int async);
13
14 void GetTransactionInfo(IntPtr transactionInformation);
15}
void GetTransactionInfo(IntPtr transactionInformation)
void Commit(int retaining, [MarshalAs(UnmanagedType.I4)] int commitType, int reserved)
void Abort(IntPtr reason, int retaining, int async)