home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 May
/
VPR9705A.ISO
/
VPR_DATA
/
PROGRAM
/
CBTRIAL
/
SETUP
/
DATA.Z
/
BCBMM.INT
< prev
next >
Wrap
Text File
|
1997-02-14
|
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.