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 >
Wrap
Text File
|
1997-02-14
|
749b
|
23 lines
{*******************************************************}
{ }
{ Delphi Runtime Library }
{ }
{ Copyright (C) 1995,96 Borland International }
{ }
{*******************************************************}
unit ShareMem;
interface
function SysGetMem(Size: Integer): Pointer;
function SysFreeMem(P: Pointer): Integer;
function SysReallocMem(P: Pointer; Size: Integer): Pointer;
function GetHeapStatus: THeapStatus;
function GetAllocMemCount: Integer;
function GetAllocMemSize: Integer;
procedure DumpBlocks;
implementation