mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
415 B
25 lines
415 B
/***
|
|
*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);
|
|
}
|