fpc/rtl/win16/glbheaph.inc
nickysn 406d5b7b3d + implemented a win16 heap manager for the far data memory models, using the
global heap; TODO: allocate heap in blocks and perform suballocation for small
  memory blocks, because the number of global heap blocks is limited

git-svn-id: trunk@31846 -
2015-09-27 13:00:27 +00:00

23 lines
778 B
PHP

{
This file is part of the Free Pascal run time library.
Copyright (c) 2015 by the Free Pascal development team
This file contains the interface section of the heap
management implementation for 16-bit Windows that uses
the Windows global heap.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
var
{ BP7 compatible vars }
HeapLimit: Word=1024;
HeapBlock: Word=8192;
HeapAllocFlags: Word=2; { 2=GMEM_MOVEABLE }