epoc32/include/mw/biouids.h
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
equal deleted inserted replaced
3:e1b950c65cb4 4:837f303aceeb
     1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     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
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     7 //
     8 // Initial Contributors:
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
     9 // Nokia Corporation - initial contribution.
    10 //
    10 //
    11 // Contributors:
    11 // Contributors:
    12 //
    12 //
    13 // Description:
    13 // Description: Contains the TUid defines for the Bio Messaging
    14 // BIOUUIDS.H
    14 // BIOUUIDS.H
    15 // Contains the TUid defines for the Bio Messaging 
       
    16 // 
    15 // 
    17 //
    16 //
    18 
    17 
    19 
       
    20 
       
    21 /**
    18 /**
    22  @file
    19  * @file
    23  @publishedAll
    20  * @publishedAll
    24  @released
    21  * @released
    25 */
    22  */
    26 
    23 
    27 #if !defined(__BIOUTILS_H__)
    24 #if !defined(__BIOUTILS_H__)
    28 #define __BIOUTILS_H__
    25 #define __BIOUTILS_H__
       
    26 
       
    27 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS 
       
    28 #include <biomessageuids.h>
       
    29 #endif
    29 
    30 
    30 //forward declarations
    31 //forward declarations
    31 /**
    32 /**
    32 * @publishedAll
    33 * @publishedAll
    33 * @released
    34 * @released
    34 */
    35 */
    35 class TUid;
    36 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 
    37 
    99 //  BIO Mtm components
    38 //  BIO Mtm components
   100 
    39 
   101 /**
    40 /**
   102 * BIO message type UID. 
    41 * BIO message type UID. 
   103 * @publishedAll
    42 * @publishedAll
   104 * @released
    43 * @released
   105 */
    44 */
   106 const TUid KUidBIOMessageTypeMtm		= {0x10001262};
    45 const TUid KUidBIOMessageTypeMtm		= {0x10001262};
   107 /**
    46 
   108 * BIO client MTM UID. 
    47 /** 
   109 * @internalTechnology
    48 * Stream ID used for storing parsed BIO data. 
       
    49 * @publishedAll
   110 * @released
    50 * @released
   111 */
    51 */
   112 const TUid KUidBIOMessageClientMtmDll	= {0x1000125A}; //previously NBSC, now BIOC
    52 const TUid KUidMsvBIODataStream			= {0x10005268}; // stream used for storing parsed data
   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 
    53 
   132 #endif *__BIOUTILS_H__
    54 #endif *__BIOUTILS_H__