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