1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // fbscli.dll Font & Bitmap server client-side library |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 */ |
|
21 |
|
22 target fbscli_fmm.dll |
|
23 CAPABILITY All -Tcb |
|
24 targettype DLL |
|
25 |
|
26 UID 0x1000008D 0x10003A15 |
|
27 VENDORID 0x70000001 |
|
28 SOURCEPATH ../sfbs |
|
29 |
|
30 userinclude ../inc |
|
31 userinclude ../../../../textandloc/fontservices/fontstore/src |
|
32 OS_LAYER_SYSTEMINCLUDE_SYMBIAN |
|
33 |
|
34 source BITBMP.CPP |
|
35 source BITCOMP.CPP |
|
36 source BITBMPEX.CPP |
|
37 source BMPASTR.CPP |
|
38 source BMPUTIL.CPP |
|
39 source FBSBMP.CPP |
|
40 source FBSFONT.CPP |
|
41 source PILE.CPP |
|
42 source SESSION.CPP |
|
43 source TFSTORE.CPP |
|
44 source FbsRalc.cpp |
|
45 source fbshelper.cpp |
|
46 source ShiftedFileStore.cpp |
|
47 source BitmapCompr.cpp |
|
48 source patchableconstantscli.cpp |
|
49 |
|
50 library euser.lib |
|
51 library efsrv.lib |
|
52 library estor.lib |
|
53 library gdi.lib |
|
54 library fntstr.lib |
|
55 library scdv.lib |
|
56 library palette.lib |
|
57 library lookuptable.lib |
|
58 library hal.lib |
|
59 #if !defined(WINS) |
|
60 library fbsrasterizer.lib |
|
61 #endif |
|
62 |
|
63 deffile FBSCLI2.DEF |
|
64 |
|
65 |
|
66 START WINS |
|
67 BASEADDRESS 0x41400000 |
|
68 END |
|
69 //configurable value to control bitmap heap management by setting |
|
70 //large bitmap threshold (requires rebuild) |
|
71 MACRO KMaxLargeBitmapAlloc=0x4000 |
|
72 //MACRO SYMBIAN_DISABLE_HARDWARE_BITMAP_WHITEFILL // Uncomment this macro to disable whitefill of hardware bitmaps on creation |
|
73 |
|
74 // KCompressionThreshold is used to determine whether a bitmap gets compressed. Values of 0 -> 256 represent 0% to 100% |
|
75 // where 0% = no compression. A value of 205 means that bitmaps are only compressed when the resulting size is 80% or |
|
76 // less of the original size. |
|
77 MACRO KCompressionThreshold=205 |
|
78 |
|
79 MACRO FNTSTORE_SUPPORT_FMM |
|
80 |
|
81 UNPAGED |
|
82 |
|
83 |
|
84 SMPSAFE |
|
85 |
|