epoc32/include/app/miutdef.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     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 "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This header file defines the bit flags that may be used to instruct
    15 // the CImMessageOperation class how to construct a new Email message
    16 // 
    17 //
    18 
    19 #if !defined (__MIUTDEF_H__)
    20 #define __MIUTDEF_H__
    21 
    22 /** Type for email creation flags used in the @c aMsvEmailTypeList parameter of CImEmailOperation 
    23 functions.
    24 
    25 @see KMsvEmailTypeListMHTMLMessage
    26 @see KMsvEmailTypeListInvisibleMessage
    27 @see KMsvEmailTypeListMessageInPreparation 
    28 @publishedAll
    29 @released
    30 */
    31 typedef TUint TMsvEmailTypeList;
    32 
    33 /** Flags that a new message should be of MHTML type. 
    34 
    35 If this is not set, a plain-text message is created. 
    36 
    37 @publishedAll
    38 @released
    39 @see TMsvEmailTypeList
    40 */
    41 const TMsvEmailTypeList KMsvEmailTypeListMHTMLMessage				= 0x00000001;	// if not set Email is a "normal" (i.e. non-MHTML) Email message
    42 /** Flags that a new message should be invisible.
    43 @publishedAll
    44 @released
    45 @see TMsvEmailTypeList
    46 */
    47 const TMsvEmailTypeList KMsvEmailTypeListInvisibleMessage			= 0x00000002;	// if set, message stays invisible on completion
    48 
    49 /** Flags that a new message should have the "in preparation" flag set. 
    50 @publishedAll
    51 @released
    52 @see TMsvEmailTypeList
    53 */
    54 const TMsvEmailTypeList KMsvEmailTypeListMessageInPreparation		= 0x00000004;	// if set, message stays marked "In preparation" on completion
    55 
    56 #endif //MIUTDEF.H
    57