equal
deleted
inserted
replaced
|
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 "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: Presence Engine specific CenRep keys. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __PRESENCEENGINEINTERNALCRKEYS_H |
|
19 #define __PRESENCEENGINEINTERNALCRKEYS_H |
|
20 |
|
21 // Presence Engine Variation API |
|
22 // Presence Engine variation keys. |
|
23 const TUid KCRUIDPresenceEngineVariation = {0x101F8792}; |
|
24 |
|
25 |
|
26 |
|
27 // Integer flag indicating whether Presence Engine supports |
|
28 // Infolink presence attribute or not. |
|
29 const TUint32 KPEngVariationInfoLinkSupported = 0x00000001; |
|
30 enum TPEngVariationInfoLinkSupported |
|
31 { |
|
32 EPEngVariationInfoLinkNotSupported = 0, |
|
33 EPEngVariationInfoLinkSupported = 1 |
|
34 }; |
|
35 |
|
36 |
|
37 |
|
38 #endif // __PRESENCEENGINEINTERNALCRKEYS_H |
|
39 |
|
40 |
|
41 // End of File |
|
42 |
|
43 |