mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 19:26:42 +00:00
[HEAP]
Hackfixed build by stubbing RtlpValidateHeapHeaders(), RtlpValidateHeapEntry() and hackplementing RtlpValidateHeap(). To be properly fixed. svn path=/trunk/; revision=49155
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user