1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/mw/mtmdef.h Wed Mar 31 12:27:01 2010 +0100
1.3 @@ -0,0 +1,69 @@
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(__MTMDEF_H__)
1.28 +#define __MTMDEF_H__
1.29 +#if !defined(__MTCLBASE_H__)
1.30 +#include <mtclbase.h>
1.31 +#endif
1.32 +#if !defined(__MTMDEF_HRH__)
1.33 +#include <mtmdef.hrh>
1.34 +#endif
1.35 +
1.36 +// no matching message parts
1.37 +
1.38 +const TMsvPartList KMsvMessagePartNone = 0x00000000;
1.39 +// message parts
1.40 +
1.41 +// Message body
1.42 +const TMsvPartList KMsvMessagePartBody = 0x00000001;
1.43 +
1.44 +// Message recipients
1.45 +
1.46 +const TMsvPartList KMsvMessagePartRecipient = 0x00000002;
1.47 +
1.48 +// Message originator
1.49 +
1.50 +const TMsvPartList KMsvMessagePartOriginator = 0x00000004;
1.51 +// Message description
1.52 +const TMsvPartList KMsvMessagePartDescription = 0x00000008;
1.53 +// Message date
1.54 +
1.55 +const TMsvPartList KMsvMessagePartDate = 0x00000010;
1.56 +// Message attachments
1.57 +
1.58 +const TMsvPartList KMsvMessagePartAttachments = 0x00000020;
1.59 +
1.60 +// find attributes
1.61 +//Flag to specify case-sensitive search.
1.62 +
1.63 +const TMsvPartList KMsvFindCaseSensitive = 0x80000000;
1.64 +// Flag to specify search for whole words.
1.65 +
1.66 +const TMsvPartList KMsvFindWholeWord = 0x40000000;
1.67 +
1.68 +// Maximum length (in characters) of find text.
1.69 +
1.70 +const TInt KMsvMaxFindTextLength = 500;
1.71 +
1.72 +#endif