20
|
1 |
/*
|
|
2 |
* Copyright (c) 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: Symbian version configuration file
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef __SYMBIAN_VERSION_HRH
|
|
19 |
#define __SYMBIAN_VERSION_HRH
|
|
20 |
|
|
21 |
// S60 and Symbian version number enumeration definitions
|
|
22 |
|
|
23 |
#define S60_30 30
|
|
24 |
#define S60_31 31
|
|
25 |
#define S60_32 32
|
|
26 |
#define S60_50 50
|
|
27 |
#define S60_51 91
|
|
28 |
#define S60_52 92
|
|
29 |
#define SYMBIAN_1 50
|
|
30 |
#define SYMBIAN_2 91
|
|
31 |
#define SYMBIAN_3 92
|
|
32 |
#define SYMBIAN_4 101
|
|
33 |
|
|
34 |
|
|
35 |
/**
|
|
36 |
* Defines the S60 or Symbian version used by this component. This flag can be
|
|
37 |
* used to variate the source code based on the SDK in use. The value of the
|
|
38 |
* flag should be always changed to reflect the current build environment.
|
|
39 |
*/
|
|
40 |
#define SYMBIAN_VERSION_SUPPORT SYMBIAN_4
|
|
41 |
|
|
42 |
|
|
43 |
#endif // __SYMBIAN_VERSION_HRH
|