|
1 // Copyright (c) 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 "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: Contains the TUid defines for the Bio Messaging |
|
14 // biomessageuids.h |
|
15 // |
|
16 |
|
17 /** |
|
18 * @file |
|
19 * @publishedPartner |
|
20 * @released |
|
21 */ |
|
22 #if !defined(__BIOMESSAGEUIDS_H__) |
|
23 #define __BIOMESSAGEUIDS_H__ |
|
24 /** |
|
25 * UID of the Smart Message Parser DLL. |
|
26 * @publishedPartner |
|
27 * @released |
|
28 */ |
|
29 const TUid KUidSmartMessageParserDll = { 0x10001251}; |
|
30 /** |
|
31 * BIO specific error/panic code base. |
|
32 * @publishedPartner |
|
33 * @released |
|
34 */ |
|
35 const TInt KBIOMessageBaseError = -505; |
|
36 /** |
|
37 * BIO message not found error. |
|
38 * @publishedPartner |
|
39 * @released |
|
40 */ |
|
41 const TInt KBIOMessageNotFound = KBIOMessageBaseError; |
|
42 /** |
|
43 * BIO server MTM already active error. |
|
44 * @publishedPartner |
|
45 * @released |
|
46 */ |
|
47 const TInt KBIOMessageSvrMtmNotInactive = KBIOMessageBaseError-1; |
|
48 /** |
|
49 * No BIO parser error. |
|
50 * @publishedPartner |
|
51 * @released |
|
52 */ |
|
53 const TInt KBIOMessageNoParserCreated = KBIOMessageBaseError-2; |
|
54 /** |
|
55 * BIO parser in use error. |
|
56 * @publishedPartner |
|
57 * @released |
|
58 */ |
|
59 const TInt KBIOMessageParserDllStillInUse = KBIOMessageBaseError-3; |
|
60 /** |
|
61 * BIO operation already active error. |
|
62 * @publishedPartner |
|
63 * @released |
|
64 */ |
|
65 const TInt KBIOMessageOperationNotInactive = KBIOMessageBaseError-4; |
|
66 /** |
|
67 * BIO server MTM operation not supported. |
|
68 * @publishedPartner |
|
69 * @released |
|
70 */ |
|
71 const TInt KBIOMessageSvrNotSupported = KBIOMessageBaseError-5; |
|
72 |
|
73 #endif //__BIOMESSAGEUIDS_H__ |