epoc32/include/mw/tsendasclientpanic.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 epoc32/include/tsendasclientpanic.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) 2004-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 #ifndef __TSENDASCLIENTPANIC_H__
    17 #define __TSENDASCLIENTPANIC_H__
    18 
    19 /**
    20 Defines the SendAs client panic codes.
    21 
    22 @publishedAll
    23 @released
    24 */
    25 enum TSendAsClientPanic
    26 	{
    27 	/**
    28 	Indicates an invalid request was made.
    29 	*/
    30 	ESendAsClientPanicBadRequest				= 0,
    31 
    32 	/**
    33 	Indicates a request was made on a session with an invalid handle.
    34 	*/
    35 	ESendAsClientPanicBadSubSessionHandle		= 1,
    36 	
    37 	/**
    38 	Indicates a request was made with invalid an argument.
    39 	*/
    40 	ESendAsClientPanicBadRequestArgument		= 2,
    41 	
    42 	/**
    43 	Indicates a request while the session is already in use.
    44 	*/
    45 	ESendAsClientPanicSubsessionInUse			= 3,
    46 	
    47 	/**
    48 	Indicates a request relating to a message was made where no message exists.
    49 	*/
    50 	ESendAsClientPanicNoCurrentMessage			= 4,
    51 
    52 	/**
    53 	Indicates a request deleting a non-existent message was made.
    54 	*/
    55 	ESendAsClientPanicMessageAlreadyDeleted		= 5,
    56 	
    57 	/**
    58 	Indicates a request to send a message encountered a problem.
    59 	*/
    60 	ESendAsClientPanicSendingMessage			= 6,
    61 
    62 	/**
    63 	Indicates a request to add or create an attachment encountered a problem.
    64 	*/
    65 	ESendAsClientPanicAddingCreatingAttachment  = 7
    66 
    67 	};
    68 
    69 #endif	//  __TSENDASCLIENTPANIC_H__