ktmw32: Add a stub for RollbackTransaction.
This commit is contained in:
parent
b3232e7c9d
commit
5e8b613397
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue