diff -r 000000000000 -r dd21522fd290 codhandler/codeng/inc/CodPanic.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/codhandler/codeng/inc/CodPanic.h Mon Mar 30 12:54:55 2009 +0300 @@ -0,0 +1,59 @@ +/* +* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* Panic codes for COD Handler. +* +* +*/ + + +#ifndef COD_PANIC_H +#define COD_PANIC_H + +// INCLUDES + +#include + +// TYPES + +/** +* Panic reasons for COD Handler. +*/ +enum TCodHandlerPanicReason + { + /// Attempt to read beyond the end of a buffer. + ECodBufferOverread = -300, + /// A command / operation is not expected in the current state. + ECodOffState, + /// Invalid COD data found where only valid is expected. + ECodInvalidData, + /// Observer already set. + ECodObserverAlreadySet, + /// Invalid arguments. + ECodInvalidArguments, + /// Request pending. + ECodRequestPending, + /// Internal error. + ECodInternal + }; + +// FUNCTION DECLARATIONS + +/** +* Panic the COD Handler. +* @param aReason Reason for the panic. +*/ +void CodPanic( TCodHandlerPanicReason aReason ); + +#endif /* def COD_PANIC_H */