author | Stefan Karlsson <stefan.karlsson@nokia.com> |
Sat, 10 Apr 2010 13:41:45 +0100 | |
branch | CompilerCompatibility |
changeset 53 | 29eae4b7c31b |
parent 19 | 989d2f495d90 |
permissions | -rw-r--r-- |
19 | 1 |
/* |
2 |
* Copyright (c) 2005-2006 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: describes system information notifiers. |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
||
19 |
#ifndef __SYSRANGE_H__ |
|
20 |
#define __SYSRANGE_H__ |
|
21 |
||
22 |
||
23 |
const TInt KBrightnessMax(95); |
|
24 |
const TInt KBrightnessMin(5); |
|
25 |
||
26 |
const TInt KScreenSaverTimeoutMax(90); |
|
27 |
const TInt KScreenSaverTimeoutMin(5); |
|
28 |
||
29 |
const TInt KKeyGaurdTimeoutMax(3600); |
|
30 |
const TInt KKeyGaurdTimeoutMin(0); |
|
31 |
||
32 |
const TInt KAutoLockTimeoutMax(999); |
|
33 |
const TInt KAutoLockTimeoutMin(0); |
|
34 |
||
35 |
const TInt KLightTimeoutMax(60); |
|
36 |
const TInt KLightTimeoutMin(5); |
|
37 |
||
53
29eae4b7c31b
Got rid of some trivial warnings (nested comments and tokens after #endif).
Stefan Karlsson <stefan.karlsson@nokia.com>
parents:
19
diff
changeset
|
38 |
#endif // __SYSRANGE_H__ |