ntdll: Add stub RtlLookupGenericTableAvl function.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56736
This commit is contained in:
Vijay Kiran Kamuju 2024-05-29 19:14:45 +02:00 committed by Alexandre Julliard
parent 962eb7ca02
commit 349c2275d4
4 changed files with 12 additions and 2 deletions

View file

@ -877,7 +877,7 @@
# @ stub RtlLogStackBackTrace
@ stdcall RtlLookupAtomInAtomTable(ptr wstr ptr)
@ stdcall RtlLookupElementGenericTable(ptr ptr)
# @ stub RtlLookupElementGenericTableAvl
@ stdcall RtlLookupElementGenericTableAvl(ptr ptr)
@ stdcall -arch=!i386 RtlLookupFunctionEntry(long ptr ptr)
@ stdcall -arch=!i386 RtlLookupFunctionTable(long ptr ptr)
@ stdcall RtlMakeSelfRelativeSD(ptr ptr ptr)

View file

@ -2175,6 +2175,15 @@ void WINAPI RtlInsertElementGenericTableAvl(PRTL_AVL_TABLE table, void *buffer,
FIXME("%p %p %lu %p: stub\n", table, buffer, size, element);
}
/******************************************************************************
* RtlLookupElementGenericTableAvl (NTDLL.@)
*/
void * WINAPI RtlLookupElementGenericTableAvl(PRTL_AVL_TABLE table, void *buffer)
{
FIXME("(%p, %p) stub!\n", table, buffer);
return NULL;
}
/*********************************************************************
* RtlQueryPackageIdentity [NTDLL.@]
*/

View file

@ -1199,7 +1199,7 @@
@ stub RtlLockBootStatusData
@ stdcall RtlLookupAtomInAtomTable(ptr wstr ptr)
@ stdcall RtlLookupElementGenericTable(ptr ptr)
@ stub RtlLookupElementGenericTableAvl
@ stdcall RtlLookupElementGenericTableAvl(ptr ptr)
@ stub RtlLookupElementGenericTableFull
@ stub RtlLookupElementGenericTableFullAvl
@ stdcall -arch=!i386 RtlLookupFunctionEntry(long ptr ptr)

View file

@ -280,6 +280,7 @@ void WINAPI RtlInitializeGenericTable(PRTL_GENERIC_TABLE,PRTL_GENERIC_COMPA
void WINAPI RtlInitializeGenericTableAvl(PRTL_AVL_TABLE,PRTL_AVL_COMPARE_ROUTINE,PRTL_AVL_ALLOCATE_ROUTINE, PRTL_AVL_FREE_ROUTINE,void *);
void WINAPI RtlInsertElementGenericTableAvl(PRTL_AVL_TABLE,void *,ULONG,BOOL*);
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);
BOOLEAN WINAPI RtlPrefixUnicodeString(const UNICODE_STRING*,const UNICODE_STRING*,BOOLEAN);