[HEAP]
authorPierre Schweitzer <pierre@reactos.org>
Fri, 15 Oct 2010 15:05:15 +0000 (15:05 +0000)
committerPierre Schweitzer <pierre@reactos.org>
Fri, 15 Oct 2010 15:05:15 +0000 (15:05 +0000)
Hackfixed build by stubbing RtlpValidateHeapHeaders(), RtlpValidateHeapEntry() and hackplementing RtlpValidateHeap().
To be properly fixed.

svn path=/trunk/; revision=49155

reactos/lib/rtl/heap.c

index d3b0efc..0e43ccb 100644 (file)
@@ -1638,6 +1638,23 @@ RtlSizeHeap(
     return ret;
 }
 
     return ret;
 }
 
+BOOLEAN NTAPI
+RtlpValidateHeap(HEAP * Heap, BOOLEAN ForceValidation)
+{
+  return HEAP_IsRealArena(Heap, Heap->flags, NULL, TRUE);
+}
+
+BOOLEAN NTAPI
+RtlpValidateHeapHeaders(HEAP * Heap, BOOLEAN Recalculate)
+{
+    return TRUE;
+}
+
+BOOLEAN NTAPI
+RtlpValidateHeapEntry(HEAP * Heap, PVOID HeapEntry)
+{
+    return TRUE;
+}
 
 /***********************************************************************
  *           RtlValidateHeap
 
 /***********************************************************************
  *           RtlValidateHeap