home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / PCTV1N5.ZIP / _HEAP.PAS next >
Encoding:
Pascal/Delphi Source File  |  1990-10-04  |  159 b   |  14 lines

  1. unit _Heap; 
  2. {Heap's private read/write variables}
  3.  
  4. interface
  5.  
  6. var
  7.   FreeBlocks: word;
  8.   MemAvail, 
  9.   MaxAvail:   LongInt;
  10.  
  11. implementation
  12.  
  13. end.
  14.