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

// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// 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
// which accompanies this distribution, and is available
// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//



/**
 @file
 @publishedAll
 @released
*/

#if !defined(__MTMDEF_H__)
#define __MTMDEF_H__
#if !defined(__MTCLBASE_H__)
#include <mtclbase.h>
#endif
#if !defined(__MTMDEF_HRH__)
#include <mtmdef.hrh>
#endif

// no matching message parts

const TMsvPartList KMsvMessagePartNone			= 0x00000000;
// message parts

// Message body 
const TMsvPartList KMsvMessagePartBody			= 0x00000001;

// Message recipients 

const TMsvPartList KMsvMessagePartRecipient		= 0x00000002;

// Message originator 

const TMsvPartList KMsvMessagePartOriginator	= 0x00000004;
// Message description 
const TMsvPartList KMsvMessagePartDescription	= 0x00000008;
// Message date 

const TMsvPartList KMsvMessagePartDate			= 0x00000010;
// Message attachments 

const TMsvPartList KMsvMessagePartAttachments	= 0x00000020;

// find attributes
//Flag to specify case-sensitive search. 

const TMsvPartList KMsvFindCaseSensitive		= 0x80000000;
// Flag to specify search for whole words. 

const TMsvPartList KMsvFindWholeWord			= 0x40000000;

// Maximum length (in characters) of find text. 

const TInt KMsvMaxFindTextLength = 500;

#endif