home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / SHAREMEM.INT < prev    next >
Text File  |  1997-02-14  |  749b  |  23 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Delphi Runtime Library                          }
  5. {                                                       }
  6. {       Copyright (C) 1995,96 Borland International     }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit ShareMem;
  11.  
  12. interface
  13.  
  14. function SysGetMem(Size: Integer): Pointer;
  15. function SysFreeMem(P: Pointer): Integer;
  16. function SysReallocMem(P: Pointer; Size: Integer): Pointer;
  17. function GetHeapStatus: THeapStatus;
  18. function GetAllocMemCount: Integer;
  19. function GetAllocMemSize: Integer;
  20. procedure DumpBlocks;
  21.  
  22. implementation
  23.