Commit e3df9043 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

ktmw32: Add a stub for CreateTransaction.

parent 1a6e9d4a
......@@ -4,7 +4,7 @@
@ stub CommitTransactionAsync
@ stub CreateEnlistment
@ stub CreateResourceManager
@ stub CreateTransaction
@ stdcall CreateTransaction(ptr ptr long long long long wstr)
@ stub CreateTransactionManager
@ stub GetCurrentClockTransactionManager
@ stub GetEnlistmentId
......
......@@ -23,6 +23,9 @@
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(ktmw32);
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
......@@ -39,3 +42,16 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE;
}
/***********************************************************************
* CreateTransaction (ktmw32.@)
*/
HANDLE WINAPI CreateTransaction(LPSECURITY_ATTRIBUTES pattr, LPGUID pguid, DWORD options,
DWORD level, DWORD flags, DWORD timeout, LPWSTR description)
{
FIXME("(%p %p 0x%x 0x%x 0x%x, %u, %s): stub\n",
pattr, pguid, options, level, flags, timeout, debugstr_w(description));
return (HANDLE) 1;
}
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