mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 10:43:52 +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:
parent
7f8660190b
commit
1a3aa9c454
1 changed files with 17 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue