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