equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-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 "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: This file contains internal central repository key definitions |
|
15 * for the vibra |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef VIBRAINTERNALCRKEYS_H |
|
21 #define VIBRAINTERNALCRKEYS_H |
|
22 |
|
23 // NOTE: |
|
24 // In Series 60 3.0 and above, please include corresponding HWRM CR header file |
|
25 // HWRMVibraSDKCRKeys.h instead of this file. |
|
26 |
|
27 // CONSTANTS |
|
28 const TUid KCRUidVibraCtrl = {0x10200C8B}; |
|
29 |
|
30 // Vibra Settings API |
|
31 |
|
32 /** |
|
33 * Vibra setting in active profile. |
|
34 * |
|
35 * Possible integer values: |
|
36 * |
|
37 * 0 (EOff) Vibra is off in active profile (default value) |
|
38 * 1 (EOn) Vibra is on in active profile |
|
39 */ |
|
40 const TUint32 KVibraCtrlProfileVibraEnabled = 0x00000001; |
|
41 |
|
42 /** |
|
43 * Maximum vibrating time supported by device. |
|
44 * |
|
45 * Value is milliseconds as an integer. |
|
46 * |
|
47 * Value is read-only. |
|
48 * |
|
49 * Default value: 10000. |
|
50 */ |
|
51 const TUint32 KVibraCtrlMaxTime = 0x00000002; |
|
52 |
|
53 #endif // VIBRAINTERNALCRKEYS_H |
|
54 |
|
55 // End of File |