epoc32/include/miutdef.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
equal deleted inserted replaced
1:666f914201fb 2:2fe1408b6811
     1 miutdef.h
     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 // 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