ntdll: Stub for RtlNumberGenericTableElements.

This commit is contained in:
André Hentschel 2009-10-25 15:35:48 +01:00 committed by Alexandre Julliard
parent fca16bc519
commit 5a9564d938
2 changed files with 10 additions and 1 deletions

View File

@ -750,7 +750,7 @@
# @ stub RtlNtPathNameToDosPathName # @ stub RtlNtPathNameToDosPathName
@ stdcall RtlNtStatusToDosError(long) @ stdcall RtlNtStatusToDosError(long)
@ stdcall RtlNtStatusToDosErrorNoTeb(long) @ stdcall RtlNtStatusToDosErrorNoTeb(long)
@ stub RtlNumberGenericTableElements @ stdcall RtlNumberGenericTableElements(ptr)
# @ stub RtlNumberGenericTableElementsAvl # @ stub RtlNumberGenericTableElementsAvl
@ stdcall RtlNumberOfClearBits(ptr) @ stdcall RtlNumberOfClearBits(ptr)
@ stdcall RtlNumberOfSetBits(ptr) @ stdcall RtlNumberOfSetBits(ptr)

View File

@ -448,6 +448,15 @@ PVOID RtlEnumerateGenericTableWithoutSplaying(PVOID pTable, PVOID *RestartKey)
return NULL; return NULL;
} }
/******************************************************************************
* RtlNumberGenericTableElements [NTDLL.@]
*/
ULONG RtlNumberGenericTableElements(PVOID pTable)
{
FIXME("(%p) stub!\n", pTable);
return 0;
}
/****************************************************************************** /******************************************************************************
* RtlMoveMemory [NTDLL.@] * RtlMoveMemory [NTDLL.@]
* *