epoc32/include/mw/tsendasclientpanic.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) 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 "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 //
    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__