Sack Library Documentation
|
Parameters |
Description |
PMEM pHeap |
pointer to a heap |
_32 * pFree |
pointer to a 32 bit value to receive the size of free space |
_32 * pUsed |
pointer to a 32 bit value to receive the size of used space |
_32 * pChunks |
pointer to a 32 bit value to receive the total count of chunks. |
pFreeChunks |
pointer to a 32 bit value to receive the total count of free chunks. |
It looks like DBG_PASS parameter isn't used... not sure why it would here, there is no allocate or delete.
The count of allocated chunks can be gotten by subtracting FreeChunks from Chunks.
_32 free; _32 used; _32 chunks; _32 free_chunks; GetHeapMemStatsEx( NULL, &free, &used, &chunks, &free_chunks );
Copyright (c) 2000+. All rights reserved.
|
What do you think about this topic? Send feedback!
|