From 81f8d27c0328efdb42f5e70d4d7ff2c3552be66e Mon Sep 17 00:00:00 2001 From: short <> Date: Fri, 8 Nov 2002 19:22:53 +0000 Subject: [PATCH] RtlInitializeGenericTable(): Fixed parameter name: 'UserParameter' +RtlInsertElementGenericTable() --- include/ddk/rtl.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/include/ddk/rtl.h b/include/ddk/rtl.h index d600c76..3144ac2 100644 --- a/include/ddk/rtl.h +++ b/include/ddk/rtl.h @@ -1166,7 +1166,16 @@ RtlInsertElementGenericTable ( IN OUT PRTL_GENERIC_TABLE Table, IN PVOID Element, IN ULONG ElementSize, - IN ULONG Unknown4 + IN PBOOLEAN NewElement OPTIONAL + ); + +PVOID +STDCALL +RtlLookupElementGenericTableFull ( + IN OUT PRTL_GENERIC_TABLE Table, + IN PVOID Element, + OUT PVOID *NodeOrParent, + OUT TABLE_SEARCH_RESULT *SearchResult ); NTSTATUS -- 1.8.3.1