ntdll: Implement RtlNumberGenericTableElements.
Signed-off-by: Vijay Kiran Kamuju <infyquest@gmail.com> Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
82a4f2e0ec
commit
df678a4ec6
|
@ -460,8 +460,8 @@ void * WINAPI RtlEnumerateGenericTableWithoutSplaying(RTL_GENERIC_TABLE *table,
|
|||
*/
|
||||
ULONG WINAPI RtlNumberGenericTableElements(RTL_GENERIC_TABLE *table)
|
||||
{
|
||||
FIXME("(%p) stub!\n", table);
|
||||
return 0;
|
||||
TRACE("(%p)\n", table);
|
||||
return table->NumberGenericTableElements;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
|
|
|
@ -268,5 +268,6 @@ NTSTATUS WINAPI PsSetLoadImageNotifyRoutine(PLOAD_IMAGE_NOTIFY_ROUTINE);
|
|||
void WINAPI RtlInitializeGenericTable(PRTL_GENERIC_TABLE,PRTL_GENERIC_COMPARE_ROUTINE,PRTL_GENERIC_ALLOCATE_ROUTINE,PRTL_GENERIC_FREE_ROUTINE,void *);
|
||||
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*);
|
||||
ULONG WINAPI RtlNumberGenericTableElements(PRTL_GENERIC_TABLE);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue