Commit 5e95d703 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

ntdll: Add stubs for Rtl[G/S]etCurrentTransaction.

parent 8036509c
......@@ -619,6 +619,7 @@
@ stdcall RtlGetControlSecurityDescriptor(ptr ptr ptr)
@ stdcall RtlGetCurrentDirectory_U(long ptr)
@ stdcall RtlGetCurrentPeb()
@ stdcall RtlGetCurrentTransaction()
@ stdcall RtlGetDaclSecurityDescriptor(ptr ptr ptr ptr)
@ stub RtlGetElementGenericTable
# @ stub RtlGetElementGenericTableAvl
......@@ -825,6 +826,7 @@
@ stdcall RtlSetCriticalSectionSpinCount(ptr long)
@ stdcall RtlSetCurrentDirectory_U(ptr)
@ stdcall RtlSetCurrentEnvironment(wstr ptr)
@ stdcall RtlSetCurrentTransaction(ptr)
@ stdcall RtlSetDaclSecurityDescriptor(ptr long ptr long)
@ stdcall RtlSetEnvironmentVariable(ptr ptr ptr)
@ stdcall RtlSetGroupSecurityDescriptor(ptr ptr long)
......
......@@ -1323,3 +1323,21 @@ DWORD WINAPI RtlGetThreadErrorMode( void )
{
return NtCurrentTeb()->HardErrorDisabled;
}
/******************************************************************************
* RtlGetCurrentTransaction [NTDLL.@]
*/
HANDLE WINAPI RtlGetCurrentTransaction(void)
{
FIXME("() :stub\n");
return NULL;
}
/******************************************************************************
* RtlSetCurrentTransaction [NTDLL.@]
*/
BOOL WINAPI RtlSetCurrentTransaction(HANDLE new_transaction)
{
FIXME("(%p) :stub\n", new_transaction);
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