Hackfixed build by stubbing RtlpValidateHeapHeaders(), RtlpValidateHeapEntry() and hackplementing RtlpValidateHeap().
To be properly fixed.

svn path=/trunk/; revision=49155
This commit is contained in:
Pierre Schweitzer 2010-10-15 15:05:15 +00:00
parent 7f8660190b
commit 1a3aa9c454

View file

@ -1638,6 +1638,23 @@ RtlSizeHeap(
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