|
1 /* |
|
2 * Copyright (c) 2002 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: Data types for NcnNotification API C/S comms |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __NCNCOMMSDEFS_H__ |
|
21 #define __NCNCOMMSDEFS_H__ |
|
22 |
|
23 #include <e32base.h> |
|
24 |
|
25 // Name of NcnList server |
|
26 _LIT( KNcnServerName, "NcnServer" ); |
|
27 |
|
28 const TInt KNcnNotificationServerMajor = 1; |
|
29 const TInt KNcnNotificationServerMinor = 1; |
|
30 const TInt KNcnNotificationServerBuild = 1; |
|
31 |
|
32 // List of internal API methods transmitted by IPC |
|
33 enum TNcnInternalApiFunc |
|
34 { |
|
35 ENewInternalMessages1 = 0, |
|
36 ENewInternalMessages2 = 1, |
|
37 EInternalMarkUnread1 = 2, |
|
38 EInternalMarkUnread2 = 3, |
|
39 EInternalCancelMarkUnread = 4 |
|
40 }; |
|
41 |
|
42 // List of API methods transmitted by IPC, continue numbering from |
|
43 // internal API functions |
|
44 enum TNcnApiFunc |
|
45 { |
|
46 ENewMessages1 = 5, |
|
47 EMarkUnread1 = 6 |
|
48 }; |
|
49 |
|
50 #endif // __NCNCOMMSDEFS_H__ |
|
51 |
|
52 // End of File |