sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0: // All rights reserved.
sl@0: // This component and the accompanying materials are made available
sl@0: // under the terms of "Eclipse Public License v1.0"
sl@0: // which accompanies this distribution, and is available
sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0: //
sl@0: // Initial Contributors:
sl@0: // Nokia Corporation - initial contribution.
sl@0: //
sl@0: // Contributors:
sl@0: //
sl@0: // Description:
sl@0: // Camera specific errors
sl@0: // 
sl@0: //
sl@0: 
sl@0: /**
sl@0:  @publishedAll
sl@0:  @released
sl@0:  @file
sl@0: */
sl@0: 
sl@0: #ifndef  ECAMERRORS_H
sl@0: #define  ECAMERRORS_H
sl@0: 
sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0: #include <ecamerrorsconst.h>
sl@0: #include <ecamerrorsdef.h>
sl@0: #endif
sl@0: 
sl@0: /** The camera has been disabled, hence calls do not succeed  */
sl@0: static const TInt KErrECamCameraDisabled			= -12100;
sl@0: 
sl@0: /** This parameter or operation is supported, but presently is disabled. */ 
sl@0: static const TInt KErrECamSettingDisabled			= -12101;
sl@0: 
sl@0: /** This value is out of range. */
sl@0: static const TInt KErrECamParameterNotInRange 		= -12102;
sl@0: 
sl@0: /**
sl@0: @deprecated Use sysytem wide error code KErrNotSupported, since there is no clear cut difference between the two 
sl@0: */ 
sl@0: static const TInt KErrECamSettingNotSupported		= -12103;
sl@0: 
sl@0: /** The optimum focus is lost */
sl@0: static const TInt KErrECamNotOptimalFocus 		= -12104;
sl@0: 
sl@0: /** The flash is not charged */
sl@0: static const TInt KErrECamFlashNotCharged		= -12105;
sl@0: 
sl@0: /**
sl@0: This error code is supposed to be used with new event KUidECamEventCIPSetColorSwapEntry 
sl@0: and KUidECamEventCIPRemoveColorSwapEntry.
sl@0: This would occur when the particular color is being targetted by 2 color entries for 
sl@0: conversion to different colors.
sl@0: 
sl@0: */
sl@0: static const TInt KErrECamColorOperationConflict	= -12106;
sl@0: 
sl@0: #endif // ECAMERRORS_H