Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 1.01 KB

File metadata and controls

51 lines (32 loc) · 1.01 KB

Home

Function name : RollbackTransaction

Group: Kernel Transaction Manager - Library: ktmw32


Requests that the specified transaction be rolled back. This function is synchronous.


Code examples:

Copying files as a transacted operation (Vista)

Declaration:

BOOL WINAPI RollbackTransaction(
  __in  HANDLE TransactionHandle
);
  

FoxPro declaration:

DECLARE INTEGER RollbackTransaction IN KtmW32;
	INTEGER TransactionHandle  

Parameters:

TransactionHandle A handle to the transaction.


Return value:

If the function succeeds, the return value is nonzero.


Comments:

Requires Windows Vista.

See also: CreateTransaction, CommitTransaction.