Commit 5e8b6133 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ktmw32: Add a stub for RollbackTransaction.

parent b3232e7c
......@@ -35,7 +35,7 @@
@ stub RenameTransactionManager
@ stub RollbackComplete
@ stub RollbackEnlistment
@ stub RollbackTransaction
@ stdcall RollbackTransaction(ptr)
@ stub RollbackTransactionAsync
@ stub RollforwardTransactionManager
@ stub SetEnlistmentRecoveryInformation
......
......@@ -49,3 +49,13 @@ HANDLE WINAPI CreateTransaction(LPSECURITY_ATTRIBUTES pattr, LPGUID pguid, DWORD
return (HANDLE) 1;
}
/***********************************************************************
* Rollback Transaction (ktmw32.@)
*/
BOOL WINAPI RollbackTransaction(HANDLE transaction)
{
FIXME("stub: %p\n", transaction);
SetLastError(ERROR_ACCESS_DENIED);
return FALSE;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment