1 /* |
|
2 * Copyright (c) 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 "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: Contains the UIDs for applications. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef APPCONTROLLERCONSTANTS_H |
|
21 #define APPCONTROLLERCONSTANTS_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32base.h> |
|
25 |
|
26 // CONSTANTS |
|
27 |
|
28 // Maximum length of user defined bluetooth name length |
|
29 const TInt KBTMaxNameLength = 30; |
|
30 |
|
31 // Profile ids start from 100 so they're separated from the apps |
|
32 const TUint KProfileIdsStart = 100; |
|
33 // Value for training an original profile names |
|
34 const TInt KProfileValue = 100; |
|
35 |
|
36 // These values are used to train SIND voice tags |
|
37 // The first row application name has integer value of 0 - 100. |
|
38 // The second row application name has integer value of 100 - 200 |
|
39 const TUint KSecondApplicationValue = 100; |
|
40 // Profile ids start from 200 |
|
41 // The first row profile name has integer value of 200-300 |
|
42 const TUint KFirstProfileValue = 200; |
|
43 // The second row profile name has integer value of 300 - 400 |
|
44 const TUint KSecondProfileValue = 300; |
|
45 |
|
46 /** |
|
47 * APPLICATION UIDS |
|
48 */ |
|
49 |
|
50 // Bluetooth ui UID |
|
51 const TUid KUidAppBtUi = { 0x10005951 }; |
|
52 |
|
53 #endif // APPCONTROLLERCONSTANTS_H |
|
54 |
|
55 // End of File |
|