Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
5e95d703
Commit
5e95d703
authored
Nov 07, 2010
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Nov 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stubs for Rtl[G/S]etCurrentTransaction.
parent
8036509c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-0
rtl.c
dlls/ntdll/rtl.c
+18
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
5e95d703
...
@@ -619,6 +619,7 @@
...
@@ -619,6 +619,7 @@
@ stdcall RtlGetControlSecurityDescriptor(ptr ptr ptr)
@ stdcall RtlGetControlSecurityDescriptor(ptr ptr ptr)
@ stdcall RtlGetCurrentDirectory_U(long ptr)
@ stdcall RtlGetCurrentDirectory_U(long ptr)
@ stdcall RtlGetCurrentPeb()
@ stdcall RtlGetCurrentPeb()
@ stdcall RtlGetCurrentTransaction()
@ stdcall RtlGetDaclSecurityDescriptor(ptr ptr ptr ptr)
@ stdcall RtlGetDaclSecurityDescriptor(ptr ptr ptr ptr)
@ stub RtlGetElementGenericTable
@ stub RtlGetElementGenericTable
# @ stub RtlGetElementGenericTableAvl
# @ stub RtlGetElementGenericTableAvl
...
@@ -825,6 +826,7 @@
...
@@ -825,6 +826,7 @@
@ stdcall RtlSetCriticalSectionSpinCount(ptr long)
@ stdcall RtlSetCriticalSectionSpinCount(ptr long)
@ stdcall RtlSetCurrentDirectory_U(ptr)
@ stdcall RtlSetCurrentDirectory_U(ptr)
@ stdcall RtlSetCurrentEnvironment(wstr ptr)
@ stdcall RtlSetCurrentEnvironment(wstr ptr)
@ stdcall RtlSetCurrentTransaction(ptr)
@ stdcall RtlSetDaclSecurityDescriptor(ptr long ptr long)
@ stdcall RtlSetDaclSecurityDescriptor(ptr long ptr long)
@ stdcall RtlSetEnvironmentVariable(ptr ptr ptr)
@ stdcall RtlSetEnvironmentVariable(ptr ptr ptr)
@ stdcall RtlSetGroupSecurityDescriptor(ptr ptr long)
@ stdcall RtlSetGroupSecurityDescriptor(ptr ptr long)
...
...
dlls/ntdll/rtl.c
View file @
5e95d703
...
@@ -1323,3 +1323,21 @@ DWORD WINAPI RtlGetThreadErrorMode( void )
...
@@ -1323,3 +1323,21 @@ DWORD WINAPI RtlGetThreadErrorMode( void )
{
{
return
NtCurrentTeb
()
->
HardErrorDisabled
;
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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment