RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
System.THeapStatus Record
Pascal
THeapStatus = record
  TotalAddrSpace: Cardinal;
  TotalUncommitted: Cardinal;
  TotalCommitted: Cardinal;
  TotalAllocated: Cardinal;
  TotalFree: Cardinal;
  FreeSmall: Cardinal;
  FreeBig: Cardinal;
  Unused: Cardinal;
  Overhead: Cardinal;
  HeapErrorCode: Cardinal;
end;
C++
struct THeapStatus {
  unsigned TotalAddrSpace;
  unsigned TotalUncommitted;
  unsigned TotalCommitted;
  unsigned TotalAllocated;
  unsigned TotalFree;
  unsigned FreeSmall;
  unsigned FreeBig;
  unsigned Unused;
  unsigned Overhead;
  unsigned HeapErrorCode;
};

System

This is record System.THeapStatus.

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!