messagingfw/msgsrvnstore/server/inc/MSVIDS.H
changeset 0 8e480a14352b
equal deleted inserted replaced
-1:000000000000 0:8e480a14352b
       
     1 // Copyright (c) 1998-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:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @publishedAll
       
    19  @released
       
    20 */
       
    21 
       
    22 #if !defined(__MSVIDS_H__)
       
    23 #define __MSVIDS_H__
       
    24 #if !defined(__MSVSTD_HRH__)
       
    25 #include <msvstd.hrh>
       
    26 #endif
       
    27 #if !defined(__MSVSTD_H__)
       
    28 #include <msvstd.h>
       
    29 #endif
       
    30 
       
    31 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS  
       
    32 #include "msvconsts.h"
       
    33 #endif
       
    34 
       
    35 // Predefined entry ids - values #defined in MSVSTD.HRH
       
    36 
       
    37 /**
       
    38 A NULL ID. 
       
    39 This is typically used to indicate that the ID has not yet been set. It can 
       
    40 also be used to "park" a CMsvServerEntry so that it doesn't lock an index 
       
    41 entry.
       
    42 @publishedAll
       
    43 @released
       
    44 @see TMsvId
       
    45 @see KMsvNullIndexEntryIdValue
       
    46 */
       
    47 const TMsvId KMsvNullIndexEntryId=KMsvNullIndexEntryIdValue;//0
       
    48 
       
    49 
       
    50 
       
    51 /**
       
    52 ID of root entry of entire index
       
    53 @publishedAll
       
    54 @released
       
    55 @see TMsvId
       
    56 @see KMsvRootIndexEntryIdValue
       
    57 */
       
    58 const TMsvId KMsvRootIndexEntryId=KMsvRootIndexEntryIdValue;//0x1000
       
    59 
       
    60 /**
       
    61 ID of local service (containing the standard folders)
       
    62 @publishedAll
       
    63 @released
       
    64 @see TMsvId
       
    65 @see KMsvLocalServiceIndexEntryIdValue
       
    66 */
       
    67 const TMsvId KMsvLocalServiceIndexEntryId=KMsvLocalServiceIndexEntryIdValue;//0x1001
       
    68 
       
    69 /**
       
    70 ID of Inbox folder 
       
    71 @publishedAll
       
    72 @released
       
    73 @see TMsvId
       
    74 @see KMsvGlobalInBoxIndexEntryIdValue
       
    75 */
       
    76 const TMsvId KMsvGlobalInBoxIndexEntryId=KMsvGlobalInBoxIndexEntryIdValue;//0x1002
       
    77 
       
    78 /**
       
    79 ID of Outbox folder
       
    80 @publishedAll
       
    81 @released
       
    82 @see TMsvId
       
    83 @see KMsvGlobalOutBoxIndexEntryIdValue
       
    84 */
       
    85 const TMsvId KMsvGlobalOutBoxIndexEntryId=KMsvGlobalOutBoxIndexEntryIdValue;//0x1003
       
    86 
       
    87 /**
       
    88 ID of Draft folder
       
    89 @publishedAll
       
    90 @released
       
    91 @see TMsvId
       
    92 @see KMsvDraftEntryIdValue
       
    93 */
       
    94 const TMsvId KMsvDraftEntryId=KMsvDraftEntryIdValue; //0x1004
       
    95 
       
    96 /**
       
    97 ID of Sent folder
       
    98 @publishedAll
       
    99 @released
       
   100 @see TMsvId
       
   101 @see KMsvSentEntryIdValue
       
   102 */
       
   103 const TMsvId KMsvSentEntryId=KMsvSentEntryIdValue; //0x1005
       
   104 
       
   105 /**
       
   106 ID of Deleted folder - Invisible folder
       
   107 @publishedAll
       
   108 @released
       
   109 @see TMsvId
       
   110 @see KMsvDeletedEntryFolderEntryIdValue
       
   111 */
       
   112 const TMsvId KMsvDeletedEntryFolderEntryId=KMsvDeletedEntryFolderEntryIdValue;//0x1006
       
   113 
       
   114 /**
       
   115 ID used to indicate Unknown/Invalid Service entry folder
       
   116 @publishedAll
       
   117 @released
       
   118 @see TMsvId
       
   119 @see KMsvUnkownServiceIndexEntryIdValue
       
   120 */
       
   121 const TMsvId KMsvUnknownServiceIndexEntryId=KMsvUnkownServiceIndexEntryIdValue; //0x1007
       
   122 
       
   123 /**
       
   124 Uid for POPService
       
   125 @publishedAll
       
   126 @released
       
   127 */
       
   128 const TUid KUidPOPService = {0x2000BB68};
       
   129 
       
   130 /**
       
   131 Uid for IMAPService
       
   132 @publishedAll
       
   133 @released
       
   134 */
       
   135 const TUid KUidIMAPService = {0x2000BB69};
       
   136 
       
   137 /**
       
   138 Uid for SMTPService
       
   139 @publishedAll
       
   140 @released
       
   141 */
       
   142 const TUid KUidSMTPService = {0x2000BB6A};
       
   143 
       
   144 /**
       
   145 Uid for SendAs2Service
       
   146 @publishedAll
       
   147 @released
       
   148 */
       
   149 const TUid KUidSendAs2Service = {0x2000BB6B};
       
   150 
       
   151 /**
       
   152 Uid for SMSService
       
   153 @publishedAll
       
   154 @released
       
   155 */
       
   156 const TUid KUidSMSService = {0x2000BB6C};
       
   157 
       
   158 #endif