messagingappbase/obexmtms/obexmtm/obexclient/include/obexClientMtmPanic.h
changeset 80 8b14b30db193
parent 0 72b543305e3a
equal deleted inserted replaced
79:2981cb3aa489 80:8b14b30db193
       
     1 // Copyright (c) 2001-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 // $Workfile: obexClientMtmPanic.h $
       
    15 // $Author: Stevep $
       
    16 // $Revision: 3 $
       
    17 // $Date: 9/11/01 15:22 $
       
    18 // 
       
    19 //
       
    20 
       
    21 
       
    22 #if !defined(__OBEXCLIENTMTMPANIC_H__)
       
    23 #define __OBEXCLIENTMTMPANIC_H__
       
    24 
       
    25 #if !defined(__E32BASE_H__)
       
    26 #include <e32base.h>
       
    27 #endif
       
    28 
       
    29 //Panic values for the Obex mtm
       
    30 enum TObexMtmPanic
       
    31 	{
       
    32 	EObexMtmNoCMsvEntrySet, //< No CMsvEntry set for attepted operation
       
    33 	EObexMtmNotAMessageEntry, //< Attempt to manipulate an entry which is not a message
       
    34 	EObexMtmNoText, //< No text in filename, for filename externalise attempt
       
    35 	EObexHeaderAlreadyLoaded //< Attempting to load an already loaded obex headers (Not used in code)
       
    36 	};
       
    37 
       
    38 GLREF_C void gPanic(TObexMtmPanic aPanic);
       
    39 
       
    40 #endif // __OBEXCLIENTMTMPANIC_H__