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
d099c90e
Commit
d099c90e
authored
Jun 04, 2009
by
Louis Lenders
Committed by
Alexandre Julliard
Jun 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for RtlEnumerateGenericTableWithoutSplaying.
parent
72870236
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
rtl.c
dlls/ntdll/rtl.c
+9
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
d099c90e
...
@@ -553,7 +553,7 @@
...
@@ -553,7 +553,7 @@
@ stub RtlEnumerateGenericTable
@ stub RtlEnumerateGenericTable
# @ stub RtlEnumerateGenericTableAvl
# @ stub RtlEnumerateGenericTableAvl
# @ stub RtlEnumerateGenericTableLikeADirectory
# @ stub RtlEnumerateGenericTableLikeADirectory
@ st
ub RtlEnumerateGenericTableWithoutSplaying
@ st
dcall RtlEnumerateGenericTableWithoutSplaying(ptr ptr)
# @ stub RtlEnumerateGenericTableWithoutSplayingAvl
# @ stub RtlEnumerateGenericTableWithoutSplayingAvl
@ stub RtlEnumerateProperties
@ stub RtlEnumerateProperties
@ stdcall RtlEqualComputerName(ptr ptr)
@ stdcall RtlEqualComputerName(ptr ptr)
...
...
dlls/ntdll/rtl.c
View file @
d099c90e
...
@@ -440,6 +440,15 @@ PVOID WINAPI RtlInitializeGenericTable(PVOID pTable, PVOID arg2, PVOID arg3, PVO
...
@@ -440,6 +440,15 @@ PVOID WINAPI RtlInitializeGenericTable(PVOID pTable, PVOID arg2, PVOID arg3, PVO
}
}
/******************************************************************************
/******************************************************************************
* RtlEnumerateGenericTableWithoutSplaying [NTDLL.@]
*/
PVOID
RtlEnumerateGenericTableWithoutSplaying
(
PVOID
pTable
,
PVOID
*
RestartKey
)
{
FIXME
(
"(%p,%p) stub!
\n
"
,
pTable
,
RestartKey
);
return
NULL
;
}
/******************************************************************************
* RtlMoveMemory [NTDLL.@]
* RtlMoveMemory [NTDLL.@]
*
*
* Move a block of memory that may overlap.
* Move a block of memory that may overlap.
...
...
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