|
1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // BIOUUIDS.H |
|
15 // Contains the TUid defines for the Bio Messaging |
|
16 // |
|
17 // |
|
18 |
|
19 |
|
20 |
|
21 /** |
|
22 @file |
|
23 @publishedAll |
|
24 @released |
|
25 */ |
|
26 |
|
27 #if !defined(__BIOUTILS_H__) |
|
28 #define __BIOUTILS_H__ |
|
29 |
|
30 //forward declarations |
|
31 /** |
|
32 * @publishedAll |
|
33 * @released |
|
34 */ |
|
35 class TUid; |
|
36 /** |
|
37 *UID of the Smart Message Parser DLL. |
|
38 * @publishedPartner |
|
39 * @released |
|
40 */ |
|
41 const TUid KUidSmartMessageParserDll = { 0x10001251}; |
|
42 /** |
|
43 * BIO specific error/panic code base. |
|
44 * @publishedPartner |
|
45 * @released |
|
46 */ |
|
47 const TInt KBIOMessageBaseError = -505; |
|
48 /** |
|
49 * BIO message not found error. |
|
50 * @publishedPartner |
|
51 * @released |
|
52 */ |
|
53 const TInt KBIOMessageNotFound = KBIOMessageBaseError; |
|
54 /** |
|
55 * BIO server MTM already active error. |
|
56 * @publishedPartner |
|
57 * @released |
|
58 */ |
|
59 const TInt KBIOMessageSvrMtmNotInactive = KBIOMessageBaseError-1; |
|
60 /** |
|
61 * No BIO parser error. |
|
62 * @publishedPartner |
|
63 * @released |
|
64 */ |
|
65 const TInt KBIOMessageNoParserCreated = KBIOMessageBaseError-2; |
|
66 /** |
|
67 * BIO parser in use error. |
|
68 * @publishedPartner |
|
69 * @released |
|
70 */ |
|
71 const TInt KBIOMessageParserDllStillInUse = KBIOMessageBaseError-3; |
|
72 /** |
|
73 * BIO operation already active error. |
|
74 * @publishedPartner |
|
75 * @released |
|
76 */ |
|
77 const TInt KBIOMessageOperationNotInactive = KBIOMessageBaseError-4; |
|
78 /** |
|
79 * BIO server MTM operation not supported. |
|
80 * @publishedPartner |
|
81 * @released |
|
82 */ |
|
83 const TInt KBIOMessageSvrNotSupported = KBIOMessageBaseError-5; |
|
84 /** |
|
85 * Unused. |
|
86 * @internalComponent |
|
87 * @removed |
|
88 */ |
|
89 const TUid KUidMsvNbsEditor={0x10001264}; |
|
90 |
|
91 // New BIO Messaging TUids |
|
92 /** |
|
93 * Stream ID used for storing parsed BIO data. |
|
94 * @internalAll |
|
95 * @released |
|
96 */ |
|
97 const TUid KUidMsvBIODataStream = {0x10005268}; // stream used for storing parsed data |
|
98 |
|
99 // BIO Mtm components |
|
100 |
|
101 /** |
|
102 * BIO message type UID. |
|
103 * @publishedAll |
|
104 * @released |
|
105 */ |
|
106 const TUid KUidBIOMessageTypeMtm = {0x10001262}; |
|
107 /** |
|
108 * BIO client MTM UID. |
|
109 * @internalTechnology |
|
110 * @released |
|
111 */ |
|
112 const TUid KUidBIOMessageClientMtmDll = {0x1000125A}; //previously NBSC, now BIOC |
|
113 /** |
|
114 * BIO server MTM UID. |
|
115 * @internalTechnology |
|
116 * @released |
|
117 */ |
|
118 const TUid KUidBIOMessageServerMtmDll = {0x1000125C}; //previously NBSS, now BIOS |
|
119 /** |
|
120 * BIO UI MTM UID. |
|
121 * @internalTechnology |
|
122 * @released |
|
123 */ |
|
124 const TUid KUidBIOMessageUiLayerMtmDll = {0x10001265}; //previously NBUM, now BIUM |
|
125 /** |
|
126 * BIO message viewer UID. |
|
127 * @internalTechnology |
|
128 * @released |
|
129 */ |
|
130 const TUid KUidBIOMessageViewerApp = {0x10001264}; //previously NBED,now BIED |
|
131 |
|
132 #endif *__BIOUTILS_H__ |