Commit d099c90e authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

ntdll: Add stub for RtlEnumerateGenericTableWithoutSplaying.

parent 72870236
...@@ -553,7 +553,7 @@ ...@@ -553,7 +553,7 @@
@ stub RtlEnumerateGenericTable @ stub RtlEnumerateGenericTable
# @ stub RtlEnumerateGenericTableAvl # @ stub RtlEnumerateGenericTableAvl
# @ stub RtlEnumerateGenericTableLikeADirectory # @ stub RtlEnumerateGenericTableLikeADirectory
@ stub RtlEnumerateGenericTableWithoutSplaying @ stdcall RtlEnumerateGenericTableWithoutSplaying(ptr ptr)
# @ stub RtlEnumerateGenericTableWithoutSplayingAvl # @ stub RtlEnumerateGenericTableWithoutSplayingAvl
@ stub RtlEnumerateProperties @ stub RtlEnumerateProperties
@ stdcall RtlEqualComputerName(ptr ptr) @ stdcall RtlEqualComputerName(ptr ptr)
......
...@@ -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.
......
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