home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
DELPHIMM.INT
< prev
next >
Wrap
Text File
|
1997-03-21
|
839b
|
37 lines
{*******************************************************}
{ }
{ Delphi Runtime Library }
{ Memory Manager Unit }
{ }
{ Copyright (C) 1997 Borland International }
{ }
{*******************************************************}
library DelphiMM;
{$IMAGEBASE $41000000}
function GetAllocMemCount: Integer;
begin
Result := AllocMemCount;
end;
function GetAllocMemSize: Integer;
begin
Result := AllocMemSize;
end;
exports
SysGetMem,
SysFreeMem,
SysReallocMem,
GetHeapStatus,
GetAllocMemCount,
GetAllocMemSize;
begin
IsMultiThread := True;
end.