2020-09-30 17:12:29 +02:00

26 lines
415 B
C

/***
*heapused.c
*
* Copyright (c) 1994, Microsoft Corporation. All rights reserved.
*
*Purpose:
*
*Revision History:
*
*******************************************************************************/
#include <cruntime.h>
#include <malloc.h>
#include <winheap.h>
size_t __cdecl
_heapused(
size_t *pUsed,
size_t *pCommit
)
{
*pUsed = 64 * 1024;
*pCommit = 128 * 1024;
return(64 * 1024);
}