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