equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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 * This file contains a list of extensions that the recognizer shouldnt recognize as text. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 // INCLUDES |
|
21 |
|
22 #include <eikon.rh> |
|
23 #include "TxtRecog.rh" |
|
24 |
|
25 // DEFINE |
|
26 |
|
27 |
|
28 // RESOURCE DEFINITIONS |
|
29 // ----------------------------------------------------------------------------- |
|
30 // |
|
31 // r_black_list_extensions |
|
32 // File extensions that recognizer shouldnt recognize as text. |
|
33 // |
|
34 // ----------------------------------------------------------------------------- |
|
35 // |
|
36 RESOURCE BLACK_LIST_EXTENSIONS_LIST r_black_list_extensions_list |
|
37 { |
|
38 extension_name = |
|
39 { |
|
40 EXTENSION_DEF |
|
41 { |
|
42 ext=".pdf" ; |
|
43 }, |
|
44 EXTENSION_DEF |
|
45 { |
|
46 ext=".rtf" ; |
|
47 }, |
|
48 EXTENSION_DEF |
|
49 { |
|
50 ext=".asp" ; |
|
51 }, |
|
52 EXTENSION_DEF |
|
53 { |
|
54 ext=".wal" ; |
|
55 } |
|
56 }; |
|
57 } |
|
58 |