epoc32/include/mw/mtmdef.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 epoc32/include/mtmdef.h@2fe1408b6811
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 
    17 
    18 /**
    19  @file
    20  @publishedAll
    21  @released
    22 */
    23 
    24 #if !defined(__MTMDEF_H__)
    25 #define __MTMDEF_H__
    26 #if !defined(__MTCLBASE_H__)
    27 #include <mtclbase.h>
    28 #endif
    29 #if !defined(__MTMDEF_HRH__)
    30 #include <mtmdef.hrh>
    31 #endif
    32 
    33 // no matching message parts
    34 
    35 const TMsvPartList KMsvMessagePartNone			= 0x00000000;
    36 // message parts
    37 
    38 // Message body 
    39 const TMsvPartList KMsvMessagePartBody			= 0x00000001;
    40 
    41 // Message recipients 
    42 
    43 const TMsvPartList KMsvMessagePartRecipient		= 0x00000002;
    44 
    45 // Message originator 
    46 
    47 const TMsvPartList KMsvMessagePartOriginator	= 0x00000004;
    48 // Message description 
    49 const TMsvPartList KMsvMessagePartDescription	= 0x00000008;
    50 // Message date 
    51 
    52 const TMsvPartList KMsvMessagePartDate			= 0x00000010;
    53 // Message attachments 
    54 
    55 const TMsvPartList KMsvMessagePartAttachments	= 0x00000020;
    56 
    57 // find attributes
    58 //Flag to specify case-sensitive search. 
    59 
    60 const TMsvPartList KMsvFindCaseSensitive		= 0x80000000;
    61 // Flag to specify search for whole words. 
    62 
    63 const TMsvPartList KMsvFindWholeWord			= 0x40000000;
    64 
    65 // Maximum length (in characters) of find text. 
    66 
    67 const TInt KMsvMaxFindTextLength = 500;
    68 
    69 #endif