Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 1011 Bytes

CommitTransaction.md

File metadata and controls

50 lines (32 loc) · 1011 Bytes

Home

Function name : CommitTransaction

Group: Kernel Transaction Manager - Library: ktmw32


Requests that the specified transaction be committed.


Code examples:

Copying files as a transacted operation (Vista)

Declaration:

BOOL WINAPI CommitTransaction(
  __in  HANDLE TransactionHandle
);  

FoxPro declaration:

DECLARE INTEGER CommitTransaction IN KtmW32;
	INTEGER TransactionHandle  

Parameters:

TransactionHandle A handle to the transaction to be committed.


Return value:

If the function succeeds, the return value is nonzero.


Comments:

Requires Windows Vista.

See also: CreateTransaction, RollbackTransaction.