From 6800465021355cd802719e9832f129fd522454de Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 9 Oct 2011 17:32:29 +0000 Subject: [PATCH] + fix compilation on wince git-svn-id: trunk@19437 - --- rtl/inc/heaph.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtl/inc/heaph.inc b/rtl/inc/heaph.inc index c534b231db..fae6e4b5af 100644 --- a/rtl/inc/heaph.inc +++ b/rtl/inc/heaph.inc @@ -65,7 +65,7 @@ const var ReturnNilIfGrowHeapFails : boolean; -{$ifndef HAS_MEMORYMANAGER} +{$ifndef EMBEDDED} { Default MemoryManager functions } Function SysGetmem(Size:ptruint):Pointer; Function SysFreemem(p:pointer):ptruint; @@ -76,7 +76,7 @@ function SysTryResizeMem(var p:pointer;size:ptruint):boolean; Function SysReAllocMem(var p:pointer;size:ptruint):Pointer; function SysGetHeapStatus:THeapStatus; function SysGetFPCHeapStatus:TFPCHeapStatus; -{$endif HAS_MEMORYMANAGER} +{$endif EMBEDDED} { Tp7 functions } Procedure Getmem(Out p:pointer;Size:ptruint);