equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __INVALIDFONTFILE_H__ |
|
21 #define __INVALIDFONTFILE_H__ |
|
22 |
|
23 #include <e32base.h> |
|
24 |
|
25 //The contents of the invalid font file. |
|
26 _LIT(KInvalidFontFileText, "This file should not load..."); |
|
27 |
|
28 //The target folder for the invalid file. |
|
29 //Required to ensure it exists. |
|
30 _LIT(KEclipsingFolder, "c:\\resource\\fonts\\"); |
|
31 |
|
32 //The full path of the invalid file to be generated. |
|
33 _LIT(KEclipsingFile, "c:\\resource\\fonts\\DejaVuSansCondensed.ttf"); |
|
34 |
|
35 GLDEF_C TInt E32Main(); |
|
36 |
|
37 #endif // __INVALIDFONTFILE_H__ |
|
38 |