ntdll: Add stub RtlNumberGenericTableElementsAvl function.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56839
This commit is contained in:
Vijay Kiran Kamuju 2024-06-19 21:49:00 +02:00 committed by Alexandre Julliard
parent 1d58a4674c
commit 2a6e7ab4ed
4 changed files with 12 additions and 2 deletions

View file

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

View file

@ -800,6 +800,15 @@ void * WINAPI RtlEnumerateGenericTableWithoutSplayingAvl(RTL_AVL_TABLE *table, P
return NULL;
}
/******************************************************************************
* RtlNumberGenericTableElementsAvl (NTDLL.@)
*/
ULONG WINAPI RtlNumberGenericTableElementsAvl(RTL_AVL_TABLE *table)
{
FIXME("(%p) stub!\n", table);
return 0;
}
/***********************************************************************
* RtlInsertElementGenericTableAvl (NTDLL.@)
*/

View file

@ -1214,7 +1214,7 @@
@ stdcall RtlNtStatusToDosError(long)
@ stdcall RtlNtStatusToDosErrorNoTeb(long)
@ stdcall RtlNumberGenericTableElements(ptr)
@ stub RtlNumberGenericTableElementsAvl
@ stdcall RtlNumberGenericTableElementsAvl(ptr)
@ stdcall RtlNumberOfClearBits(ptr)
@ stdcall RtlNumberOfSetBits(ptr)
@ stub RtlOemStringToCountedUnicodeString

View file

@ -285,6 +285,7 @@ void * WINAPI RtlLookupElementGenericTable(PRTL_GENERIC_TABLE,void *);
void * WINAPI RtlLookupElementGenericTableAvl(PRTL_AVL_TABLE,void *);
void WINAPI RtlMapGenericMask(ACCESS_MASK*,const GENERIC_MAPPING*);
ULONG WINAPI RtlNumberGenericTableElements(PRTL_GENERIC_TABLE);
ULONG WINAPI RtlNumberGenericTableElementsAvl(PRTL_AVL_TABLE);
BOOLEAN WINAPI RtlPrefixUnicodeString(const UNICODE_STRING*,const UNICODE_STRING*,BOOLEAN);
NTSTATUS WINAPI RtlUpcaseUnicodeString(UNICODE_STRING*,const UNICODE_STRING*,BOOLEAN);
char WINAPI RtlUpperChar(char);