equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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 the License "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: Provides one place for variation in Browser Engine. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef BROWSERENGINEVARIATION_H |
|
21 #define BROWSERENGINEVARIATION_H |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 /* |
|
26 ** Includes |
|
27 */ |
|
28 #include "nwx_defs.h" |
|
29 |
|
30 #ifdef __cplusplus |
|
31 extern "C" { |
|
32 #endif |
|
33 |
|
34 #ifdef __SERIES60_27__ |
|
35 NW_Bool NewFeatureEnabled() { return NW_FALSE; } |
|
36 #else |
|
37 #ifdef __SERIES60_28__ |
|
38 NW_Bool NewFeatureEnabled() { return NW_FALSE; } |
|
39 #else |
|
40 NW_Bool NewFeatureEnabled() { return NW_TRUE; } |
|
41 #endif // __SERIES60_28__ |
|
42 #endif // __SERIES60_27__ |
|
43 |
|
44 |
|
45 #ifdef __cplusplus |
|
46 } /* extern "C" */ |
|
47 #endif |
|
48 |
|
49 |
|
50 #endif // BROWSERENGINEVARIATION_H |
|
51 |
|
52 // End of File |