--- a/fbs/fontandbitmapserver/sfbs/patchableconstantscli.cpp Tue Feb 02 01:47:50 2010 +0200
+++ b/fbs/fontandbitmapserver/sfbs/patchableconstantscli.cpp Fri Apr 16 16:21:04 2010 +0300
@@ -65,8 +65,13 @@
This constant defines the minimum size of the virtual address range reserved for the large bitmap chunk.
@note Default value: 64MB (0x04000000)
+@note Emulator value 32MB (0x02000000)
*/
+#ifdef __WINS__
+EXPORT_C extern const TInt KFbServLargeChunkMinVirtualSize = 0x02000000;
+#else
EXPORT_C extern const TInt KFbServLargeChunkMinVirtualSize = 0x04000000;
+#endif
/**
@SYMPatchable
@@ -75,9 +80,10 @@
This constant defines the maximum size of the virtual address range reserved for the large bitmap chunk.
@note Default value: 256MB (0x10000000)
+@note Emulator value 48MB (0x03000000)
*/
#ifdef __WINS__
-EXPORT_C extern const TInt KFbServLargeChunkMaxVirtualSize = 0x8000000;
+EXPORT_C extern const TInt KFbServLargeChunkMaxVirtualSize = 0x03000000;
#else
EXPORT_C extern const TInt KFbServLargeChunkMaxVirtualSize = 0x10000000;
#endif