ntdll: Add stub for RtlEnumerateGenericTableWithoutSplaying.

This commit is contained in:
Louis Lenders 2009-06-04 07:38:57 +02:00 committed by Alexandre Julliard
parent 7287023647
commit d099c90ea3
2 changed files with 10 additions and 1 deletions

View file

@ -553,7 +553,7 @@
@ stub RtlEnumerateGenericTable
# @ stub RtlEnumerateGenericTableAvl
# @ stub RtlEnumerateGenericTableLikeADirectory
@ stub RtlEnumerateGenericTableWithoutSplaying
@ stdcall RtlEnumerateGenericTableWithoutSplaying(ptr ptr)
# @ stub RtlEnumerateGenericTableWithoutSplayingAvl
@ stub RtlEnumerateProperties
@ stdcall RtlEqualComputerName(ptr ptr)

View file

@ -439,6 +439,15 @@ PVOID WINAPI RtlInitializeGenericTable(PVOID pTable, PVOID arg2, PVOID arg3, PVO
return NULL;
}
/******************************************************************************
* RtlEnumerateGenericTableWithoutSplaying [NTDLL.@]
*/
PVOID RtlEnumerateGenericTableWithoutSplaying(PVOID pTable, PVOID *RestartKey)
{
FIXME("(%p,%p) stub!\n", pTable, RestartKey);
return NULL;
}
/******************************************************************************
* RtlMoveMemory [NTDLL.@]
*