1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/mw/biouids.h Wed Mar 31 12:27:01 2010 +0100
1.3 @@ -0,0 +1,132 @@
1.4 +// Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// 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
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// BIOUUIDS.H
1.18 +// Contains the TUid defines for the Bio Messaging
1.19 +//
1.20 +//
1.21 +
1.22 +
1.23 +
1.24 +/**
1.25 + @file
1.26 + @publishedAll
1.27 + @released
1.28 +*/
1.29 +
1.30 +#if !defined(__BIOUTILS_H__)
1.31 +#define __BIOUTILS_H__
1.32 +
1.33 +//forward declarations
1.34 +/**
1.35 +* @publishedAll
1.36 +* @released
1.37 +*/
1.38 +class TUid;
1.39 +/**
1.40 +*UID of the Smart Message Parser DLL.
1.41 +* @publishedPartner
1.42 +* @released
1.43 +*/
1.44 +const TUid KUidSmartMessageParserDll = { 0x10001251};
1.45 +/**
1.46 +* BIO specific error/panic code base.
1.47 +* @publishedPartner
1.48 +* @released
1.49 +*/
1.50 +const TInt KBIOMessageBaseError = -505;
1.51 +/**
1.52 +* BIO message not found error.
1.53 +* @publishedPartner
1.54 +* @released
1.55 +*/
1.56 +const TInt KBIOMessageNotFound = KBIOMessageBaseError;
1.57 +/**
1.58 +* BIO server MTM already active error.
1.59 +* @publishedPartner
1.60 +* @released
1.61 +*/
1.62 +const TInt KBIOMessageSvrMtmNotInactive = KBIOMessageBaseError-1;
1.63 +/**
1.64 +* No BIO parser error.
1.65 +* @publishedPartner
1.66 +* @released
1.67 +*/
1.68 +const TInt KBIOMessageNoParserCreated = KBIOMessageBaseError-2;
1.69 +/**
1.70 +* BIO parser in use error.
1.71 +* @publishedPartner
1.72 +* @released
1.73 +*/
1.74 +const TInt KBIOMessageParserDllStillInUse = KBIOMessageBaseError-3;
1.75 +/**
1.76 +* BIO operation already active error.
1.77 +* @publishedPartner
1.78 +* @released
1.79 +*/
1.80 +const TInt KBIOMessageOperationNotInactive = KBIOMessageBaseError-4;
1.81 +/**
1.82 +* BIO server MTM operation not supported.
1.83 +* @publishedPartner
1.84 +* @released
1.85 +*/
1.86 +const TInt KBIOMessageSvrNotSupported = KBIOMessageBaseError-5;
1.87 +/**
1.88 +* Unused.
1.89 +* @internalComponent
1.90 +* @removed
1.91 +*/
1.92 +const TUid KUidMsvNbsEditor={0x10001264};
1.93 +
1.94 +// New BIO Messaging TUids
1.95 +/**
1.96 +* Stream ID used for storing parsed BIO data.
1.97 +* @internalAll
1.98 +* @released
1.99 +*/
1.100 +const TUid KUidMsvBIODataStream = {0x10005268}; // stream used for storing parsed data
1.101 +
1.102 +// BIO Mtm components
1.103 +
1.104 +/**
1.105 +* BIO message type UID.
1.106 +* @publishedAll
1.107 +* @released
1.108 +*/
1.109 +const TUid KUidBIOMessageTypeMtm = {0x10001262};
1.110 +/**
1.111 +* BIO client MTM UID.
1.112 +* @internalTechnology
1.113 +* @released
1.114 +*/
1.115 +const TUid KUidBIOMessageClientMtmDll = {0x1000125A}; //previously NBSC, now BIOC
1.116 +/**
1.117 +* BIO server MTM UID.
1.118 +* @internalTechnology
1.119 +* @released
1.120 +*/
1.121 +const TUid KUidBIOMessageServerMtmDll = {0x1000125C}; //previously NBSS, now BIOS
1.122 +/**
1.123 +* BIO UI MTM UID.
1.124 +* @internalTechnology
1.125 +* @released
1.126 +*/
1.127 +const TUid KUidBIOMessageUiLayerMtmDll = {0x10001265}; //previously NBUM, now BIUM
1.128 +/**
1.129 +* BIO message viewer UID.
1.130 +* @internalTechnology
1.131 +* @released
1.132 +*/
1.133 +const TUid KUidBIOMessageViewerApp = {0x10001264}; //previously NBED,now BIED
1.134 +
1.135 +#endif *__BIOUTILS_H__