See GetRtHeapInfo
Syntax
typedef struct tagHeapInfo {
    DWORD dwHeapSize;
    DWORD dwAvailable;
    DWORD dwLargest;
    WORD wFlags;
} HEAPINFO, *LPHEAPINFO;
Fields
dwHeapSize 
- The total number of bytes in the heap object; the size of the memory supplied when the object was created. 
 dwAvailable 
- The total number of bytes remaining for allocation. 
 dwLargest 
- The number of bytes in the largest contiguous available space in the heap. 
 wFlags 
- The flags used to create the heap. 
 
See Also
GetRtHeapInfo
 
            
            See Also