Commit 5a9564d9 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ntdll: Stub for RtlNumberGenericTableElements.

parent fca16bc5
......@@ -750,7 +750,7 @@
# @ stub RtlNtPathNameToDosPathName
@ stdcall RtlNtStatusToDosError(long)
@ stdcall RtlNtStatusToDosErrorNoTeb(long)
@ stub RtlNumberGenericTableElements
@ stdcall RtlNumberGenericTableElements(ptr)
# @ stub RtlNumberGenericTableElementsAvl
@ stdcall RtlNumberOfClearBits(ptr)
@ stdcall RtlNumberOfSetBits(ptr)
......
......@@ -449,6 +449,15 @@ PVOID RtlEnumerateGenericTableWithoutSplaying(PVOID pTable, PVOID *RestartKey)
}
/******************************************************************************
* RtlNumberGenericTableElements [NTDLL.@]
*/
ULONG RtlNumberGenericTableElements(PVOID pTable)
{
FIXME("(%p) stub!\n", pTable);
return 0;
}
/******************************************************************************
* RtlMoveMemory [NTDLL.@]
*
* 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