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