home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Runimage / Delphi50 / Doc / SHAREMEM.INT < prev    next >
Text File  |  1999-08-11  |  771b  |  34 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Runtime Library                  }
  5. {                                                       }
  6. {       Copyright (C) 1995,99 Inprise Corporation       }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit ShareMem;
  11.  
  12. interface
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19. function SysGetMem(Size: Integer): Pointer;
  20. function SysFreeMem(P: Pointer): Integer;
  21. function SysReallocMem(P: Pointer; Size: Integer): Pointer;
  22. function GetHeapStatus: THeapStatus;
  23. function GetAllocMemCount: Integer;
  24. function GetAllocMemSize: Integer;
  25. procedure DumpBlocks;
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33. implementation
  34.