|
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 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: Browser version definition |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef BROWSERVERSION_H |
|
20 #define BROWSERVERSION_H |
|
21 |
|
22 #define MobileBrowserName (_L("MobileBrowser")) |
|
23 |
|
24 #if defined (__S60_50__) |
|
25 #define MobileBrowserVersion (_L("5.0")) |
|
26 #elif defined (__S60_32__) |
|
27 #define MobileBrowserVersion (_L("3.2")) |
|
28 #elif defined (__SERIES60_31__) |
|
29 #define MobileBrowserVersion (_L("3.1")) |
|
30 #elif defined (__SERIES60_30__) |
|
31 #define MobileBrowserVersion (_L("3.0")) |
|
32 #elif defined(__SERIES60_28__) |
|
33 #define MobileBrowserVersion (_L("2.8")) |
|
34 #elif defined (__SERIES60_27__) |
|
35 #define MobileBrowserVersion (_L("2.7")) |
|
36 #elif defined (__SERIES60_26__) |
|
37 #define MobileBrowserVersion (_L("2.6")) |
|
38 #else |
|
39 #define MobileBrowserVersion (_L("2.x")) |
|
40 #endif |
|
41 |
|
42 #define MobileBrowserBuild (_L("0516")) |
|
43 |
|
44 |
|
45 #endif BROWSERVERSION_H |
|
46 //end of file |