equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 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: Private consts to be used in Presence Engine. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __PENGINTERNALGLOBALCONSTS_H |
|
19 #define __PENGINTERNALGLOBALCONSTS_H |
|
20 |
|
21 // INCLUDES |
|
22 #include <E32Base.h> |
|
23 |
|
24 |
|
25 // CONSTANTS |
|
26 |
|
27 /** |
|
28 * Constants to address Message parameters in |
|
29 * the Client-Server communication. |
|
30 */ |
|
31 const TInt KMessageSlot0 = 0; // message slot 0 |
|
32 const TInt KMessageSlot1 = 1; // message slot 1 |
|
33 const TInt KMessageSlot2 = 2; // message slot 2 |
|
34 const TInt KMessageSlot3 = 3; // message slot 3 |
|
35 |
|
36 |
|
37 |
|
38 #endif //__PENGINTERNALGLOBALCONSTS_H |
|
39 |
|
40 |