[NTOS] Fix Shim AVL prototypes to exactly match the types expected by RtlInitializeGe...
[reactos.git] / ntoskrnl / ps / apphelp.c
index 11ae406..6cdea62 100644 (file)
@@ -208,7 +208,7 @@ ApphelpCacheQueryInfo(
 RTL_GENERIC_COMPARE_RESULTS
 NTAPI
 ApphelpShimCacheCompareRoutine(
 RTL_GENERIC_COMPARE_RESULTS
 NTAPI
 ApphelpShimCacheCompareRoutine(
-    _In_ PRTL_AVL_TABLE Table,
+    _In_ struct _RTL_AVL_TABLE *Table,
     _In_ PVOID FirstStruct,
     _In_ PVOID SecondStruct)
 {
     _In_ PVOID FirstStruct,
     _In_ PVOID SecondStruct)
 {
@@ -233,7 +233,7 @@ ApphelpShimCacheCompareRoutine(
 PVOID
 NTAPI
 ApphelpShimCacheAllocateRoutine(
 PVOID
 NTAPI
 ApphelpShimCacheAllocateRoutine(
-    _In_ PRTL_AVL_TABLE Table,
+    _In_ struct _RTL_AVL_TABLE *Table,
     _In_ CLONG ByteSize)
 {
     return ApphelpAlloc(ByteSize);
     _In_ CLONG ByteSize)
 {
     return ApphelpAlloc(ByteSize);
@@ -242,7 +242,7 @@ ApphelpShimCacheAllocateRoutine(
 VOID
 NTAPI
 ApphelpShimCacheFreeRoutine(
 VOID
 NTAPI
 ApphelpShimCacheFreeRoutine(
-    _In_ PRTL_AVL_TABLE Table,
+    _In_ struct _RTL_AVL_TABLE *Table,
     _In_ PVOID Buffer)
 {
     ApphelpFree(Buffer);
     _In_ PVOID Buffer)
 {
     ApphelpFree(Buffer);