|
1 /* |
|
2 * Copyright (c) 2007 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: Base class for XIMP API implementations. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef IMAPIOBJBASE_H |
|
19 #define IMAPIOBJBASE_H |
|
20 |
|
21 |
|
22 /** |
|
23 * IM plugin class implementation UIDs. |
|
24 * |
|
25 * These do not have to be "real" Symbian UIDs, but such ID's, |
|
26 * that they do not overlap with XIMP or IM Plugin API interface IDs. |
|
27 */ |
|
28 |
|
29 // 90xx - ximp related |
|
30 // 91xx - im related |
|
31 // 92xx - instant messaging related |
|
32 |
|
33 |
|
34 const TInt KArrayGranularity( 2 ); |
|
35 |
|
36 // IM plugin events |
|
37 #define IMIMP_CLSID_CPROTOCOLIMCONVERSATIONDATAHOST 9200 |
|
38 |
|
39 // Im datamodel classes |
|
40 #define IMIMP_CLSID_CIMDATACACHE 9210 |
|
41 #define IMIMP_CLSID_CIMCONVERSATIONINFOIMP 9211 |
|
42 #define IMIMP_CLSID_CIMCONVERSATIONEVENTIMP 9212 |
|
43 #define IMIMP_CLSID_CIMOBJECTFACTORYIMP 9213 |
|
44 #define IMIMP_CLSID_CIMOPERATIONFACTORYIMP 9214 |
|
45 // Im plugin host environment classes |
|
46 #define IMIMP_CLSID_CPROTOCOLIMDATAHOSTIMP 9230 |
|
47 |
|
48 |
|
49 // IM Management classes |
|
50 |
|
51 #define IMIMP_CLSID_CIMSEARCHIMP 9240 |
|
52 #define IMIMP_CLSID_CONVERSATIONIMP 9241 |
|
53 #define IMIMP_CLSID_CIMGROUPSIMP 9242 |
|
54 #define IMIMP_CLSID_CIMINVITATIONIMP 9243 |
|
55 #define IMIMP_CLSID_CIMFEATURESIMP 9244 |
|
56 |
|
57 |
|
58 |
|
59 #endif // IMAPIOBJBASE_H |