epoc32/include/msvids.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
     1.1 --- a/epoc32/include/msvids.h	Tue Nov 24 13:55:44 2009 +0000
     1.2 +++ b/epoc32/include/msvids.h	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -1,1 +1,170 @@
     1.4 -msvids.h
     1.5 +// Copyright (c) 1998-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 +//
    1.19 +
    1.20 +
    1.21 +
    1.22 +/**
    1.23 + @file
    1.24 + @publishedAll
    1.25 + @released
    1.26 +*/
    1.27 +
    1.28 +#if !defined(__MSVIDS_H__)
    1.29 +#define __MSVIDS_H__
    1.30 +#if !defined(__MSVSTD_HRH__)
    1.31 +#include <msvstd.hrh>
    1.32 +#endif
    1.33 +#if !defined(__MSVSTD_H__)
    1.34 +#include <msvstd.h>
    1.35 +#endif
    1.36 +
    1.37 +// Predefined entry ids - values #defined in MSVSTD.HRH
    1.38 +
    1.39 +/**
    1.40 +A NULL ID. 
    1.41 +This is typically used to indicate that the ID has not yet been set. It can 
    1.42 +also be used to "park" a CMsvServerEntry so that it doesn't lock an index 
    1.43 +entry.
    1.44 +@publishedAll
    1.45 +@released
    1.46 +@see TMsvId
    1.47 +@see KMsvNullIndexEntryIdValue
    1.48 +*/
    1.49 +const TMsvId KMsvNullIndexEntryId=KMsvNullIndexEntryIdValue;//0
    1.50 +
    1.51 +/**
    1.52 +Temporary ID used for testing purpose
    1.53 +@internalAll
    1.54 +@released
    1.55 +@see TMsvId
    1.56 +@see KMsvTempIndexEntryIdValue
    1.57 +*/
    1.58 +const TMsvId KMsvTempIndexEntryId=KMsvTempIndexEntryIdValue;//1
    1.59 +
    1.60 +/**
    1.61 +ID of root entry of entire index
    1.62 +@publishedAll
    1.63 +@released
    1.64 +@see TMsvId
    1.65 +@see KMsvRootIndexEntryIdValue
    1.66 +*/
    1.67 +const TMsvId KMsvRootIndexEntryId=KMsvRootIndexEntryIdValue;//0x1000
    1.68 +
    1.69 +/**
    1.70 +ID of local service (containing the standard folders)
    1.71 +@publishedAll
    1.72 +@released
    1.73 +@see TMsvId
    1.74 +@see KMsvLocalServiceIndexEntryIdValue
    1.75 +*/
    1.76 +const TMsvId KMsvLocalServiceIndexEntryId=KMsvLocalServiceIndexEntryIdValue;//0x1001
    1.77 +
    1.78 +/**
    1.79 +ID of Inbox folder 
    1.80 +@publishedAll
    1.81 +@released
    1.82 +@see TMsvId
    1.83 +@see KMsvGlobalInBoxIndexEntryIdValue
    1.84 +*/
    1.85 +const TMsvId KMsvGlobalInBoxIndexEntryId=KMsvGlobalInBoxIndexEntryIdValue;//0x1002
    1.86 +
    1.87 +/**
    1.88 +ID of Outbox folder
    1.89 +@publishedAll
    1.90 +@released
    1.91 +@see TMsvId
    1.92 +@see KMsvGlobalOutBoxIndexEntryIdValue
    1.93 +*/
    1.94 +const TMsvId KMsvGlobalOutBoxIndexEntryId=KMsvGlobalOutBoxIndexEntryIdValue;//0x1003
    1.95 +
    1.96 +/**
    1.97 +ID of Draft folder
    1.98 +@publishedAll
    1.99 +@released
   1.100 +@see TMsvId
   1.101 +@see KMsvDraftEntryIdValue
   1.102 +*/
   1.103 +const TMsvId KMsvDraftEntryId=KMsvDraftEntryIdValue; //0x1004
   1.104 +
   1.105 +/**
   1.106 +ID of Sent folder
   1.107 +@publishedAll
   1.108 +@released
   1.109 +@see TMsvId
   1.110 +@see KMsvSentEntryIdValue
   1.111 +*/
   1.112 +const TMsvId KMsvSentEntryId=KMsvSentEntryIdValue; //0x1005
   1.113 +
   1.114 +/**
   1.115 +ID of Deleted folder - Invisible folder
   1.116 +@publishedAll
   1.117 +@released
   1.118 +@see TMsvId
   1.119 +@see KMsvDeletedEntryFolderEntryIdValue
   1.120 +*/
   1.121 +const TMsvId KMsvDeletedEntryFolderEntryId=KMsvDeletedEntryFolderEntryIdValue;//0x1006
   1.122 +
   1.123 +/**
   1.124 +ID used to indicate Unknown/Invalid Service entry folder
   1.125 +@publishedAll
   1.126 +@released
   1.127 +@see TMsvId
   1.128 +@see KMsvUnkownServiceIndexEntryIdValue
   1.129 +*/
   1.130 +const TMsvId KMsvUnknownServiceIndexEntryId=KMsvUnkownServiceIndexEntryIdValue; //0x1007
   1.131 +
   1.132 +/**
   1.133 +@internalAll
   1.134 +@released
   1.135 +@see TMsvId
   1.136 +*/
   1.137 +const TMsvId KFirstFreeEntryId=0x100000;
   1.138 +
   1.139 +/**
   1.140 +Uid for POPService
   1.141 +@publishedAll
   1.142 +@released
   1.143 +*/
   1.144 +const TUid KUidPOPService = {0x2000BB68};
   1.145 +
   1.146 +/**
   1.147 +Uid for IMAPService
   1.148 +@publishedAll
   1.149 +@released
   1.150 +*/
   1.151 +const TUid KUidIMAPService = {0x2000BB69};
   1.152 +
   1.153 +/**
   1.154 +Uid for SMTPService
   1.155 +@publishedAll
   1.156 +@released
   1.157 +*/
   1.158 +const TUid KUidSMTPService = {0x2000BB6A};
   1.159 +
   1.160 +/**
   1.161 +Uid for SendAs2Service
   1.162 +@publishedAll
   1.163 +@released
   1.164 +*/
   1.165 +const TUid KUidSendAs2Service = {0x2000BB6B};
   1.166 +
   1.167 +/**
   1.168 +Uid for SMSService
   1.169 +@publishedAll
   1.170 +@released
   1.171 +*/
   1.172 +const TUid KUidSMSService = {0x2000BB6C};
   1.173 +
   1.174 +#endif