email/pop3andsmtpmtm/imapservermtm/inc/IMPSPAN.H
changeset 25 84d9eb65b26f
equal deleted inserted replaced
23:238255e8b033 25:84d9eb65b26f
       
     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 //
       
    15 
       
    16 #if !defined(__IMPSPAN_H__)
       
    17 #define __IMPSPAN_H__
       
    18 
       
    19 #if !defined(__E32BASE_H__)
       
    20 #include <e32base.h>
       
    21 #endif
       
    22 
       
    23 /**
       
    24 @internalComponent
       
    25 @released
       
    26 */
       
    27 enum TImpsPanic
       
    28 	{
       
    29 	ETxtcNoBodyText,
       
    30 	EUnknownTag,
       
    31 	EOpenWhenNotClosed,
       
    32 	ESelectWhenNotReady,
       
    33 	EFetchWhenNotSelected,
       
    34 	EUnknownState,
       
    35 	EAlreadySending,
       
    36 	ESendingAlready,
       
    37 	EConnectWhenConnected,
       
    38 	EIOWhenNotReady,
       
    39 	EAtomStackOverflow,
       
    40 	EAtomStackUnderflow,
       
    41 	ECantChangeUID,
       
    42 	ECantChangeMsvId,
       
    43 	EMsgnrOutOfRange,
       
    44 	EIndexEmpty,
       
    45 	ECreateWhenNotReady,
       
    46 	ERenameWhenNotReady,
       
    47 	EDeleteWhenNotReady,
       
    48 	ESubscribeWhenNotReady,
       
    49 	ECloseWhenNotSelected,
       
    50 	ENotLoggedOn,
       
    51 	ECopyNotFromSelectedFolder,
       
    52 	ESyncWhenNotSelected,
       
    53 	ENotImplementedYet,
       
    54 	ECommandCompleteInUnknownState,
       
    55 	ERunLInUnknownState,
       
    56 	EUnknownEncodingMethod,
       
    57 	EInvalidStatus,
       
    58 	ECouldntFindFolder,
       
    59 	ECopyWhenNotSelected,
       
    60 	EDeleteOfUnknownType,
       
    61 	ECannotGetMoveEntry,
       
    62 	EUnknownMsvType,
       
    63 	EInvalidService,
       
    64 	EInvalidMsvTypeToCommand,
       
    65 	EInvalidInbox,
       
    66 	EBadUseOfImap4Op,
       
    67 	EBadUseOfOffLineOp,
       
    68 	KStorableAtomAlreadyUsed,
       
    69 	KStorableAtomNotSet,
       
    70 	KInvalidDummyComplete,
       
    71 	KIncorrectNoOfUidsFromUidSearch,
       
    72 	KSettingSeenFlagToExistingState,
       
    73 	KErrorBuildingStoreFlagsCommand,
       
    74 	KMaxBufferLengthExceeded,
       
    75 	ECancelFetchWhenNotFetching
       
    76 	};
       
    77 
       
    78 GLREF_C void gPanic(TImpsPanic aPanic);
       
    79 
       
    80 #endif