home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April
/
Chip_1997-04_cd.bin
/
prezent
/
cb
/
data.z
/
DELPHIMM.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-01-16
|
1KB
|
46 lines
{*******************************************************}
{ }
{ Delphi Runtime Library }
{ Memory Manager Unit }
{ }
{ Copyright (C) 1996 Borland International }
{ }
{*******************************************************}
library BCBMM;
uses Windows;
{$IMAGEBASE $41000000}
function GetAllocMemCount: Integer;
begin
Result := AllocMemCount;
end;
function GetAllocMemSize: Integer;
begin
Result := AllocMemSize;
end;
procedure DumpBlocks;
begin
end;
exports
SysGetMem name '@System@SysGetMem$qqri',
SysFreeMem name '@System@SysFreeMem$qqrpv',
SysReallocMem name '@System@SysReallocMem$qqrpvi',
GetMemory,
FreeMemory,
ReallocMemory,
GetHeapStatus,
GetAllocMemCount,
GetAllocMemSize,
DumpBlocks;
begin
IsMultiThread := True;
end.