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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
15 // Contains the TUid defines for the Bio Messaging
27 #if !defined(__BIOUTILS_H__)
28 #define __BIOUTILS_H__
30 //forward declarations
37 *UID of the Smart Message Parser DLL.
41 const TUid KUidSmartMessageParserDll = { 0x10001251};
43 * BIO specific error/panic code base.
47 const TInt KBIOMessageBaseError = -505;
49 * BIO message not found error.
53 const TInt KBIOMessageNotFound = KBIOMessageBaseError;
55 * BIO server MTM already active error.
59 const TInt KBIOMessageSvrMtmNotInactive = KBIOMessageBaseError-1;
61 * No BIO parser error.
65 const TInt KBIOMessageNoParserCreated = KBIOMessageBaseError-2;
67 * BIO parser in use error.
71 const TInt KBIOMessageParserDllStillInUse = KBIOMessageBaseError-3;
73 * BIO operation already active error.
77 const TInt KBIOMessageOperationNotInactive = KBIOMessageBaseError-4;
79 * BIO server MTM operation not supported.
83 const TInt KBIOMessageSvrNotSupported = KBIOMessageBaseError-5;
89 const TUid KUidMsvNbsEditor={0x10001264};
91 // New BIO Messaging TUids
93 * Stream ID used for storing parsed BIO data.
97 const TUid KUidMsvBIODataStream = {0x10005268}; // stream used for storing parsed data
102 * BIO message type UID.
106 const TUid KUidBIOMessageTypeMtm = {0x10001262};
108 * BIO client MTM UID.
109 * @internalTechnology
112 const TUid KUidBIOMessageClientMtmDll = {0x1000125A}; //previously NBSC, now BIOC
114 * BIO server MTM UID.
115 * @internalTechnology
118 const TUid KUidBIOMessageServerMtmDll = {0x1000125C}; //previously NBSS, now BIOS
121 * @internalTechnology
124 const TUid KUidBIOMessageUiLayerMtmDll = {0x10001265}; //previously NBUM, now BIUM
126 * BIO message viewer UID.
127 * @internalTechnology
130 const TUid KUidBIOMessageViewerApp = {0x10001264}; //previously NBED,now BIED
132 #endif *__BIOUTILS_H__