os/mm/imagingandcamerafws/camerafw/Include/ecamerrors.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-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 // Camera specific errors
    15 // 
    16 //
    17 
    18 /**
    19  @publishedAll
    20  @released
    21  @file
    22 */
    23 
    24 #ifndef  ECAMERRORS_H
    25 #define  ECAMERRORS_H
    26 
    27 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
    28 #include <ecamerrorsconst.h>
    29 #include <ecamerrorsdef.h>
    30 #endif
    31 
    32 /** The camera has been disabled, hence calls do not succeed  */
    33 static const TInt KErrECamCameraDisabled			= -12100;
    34 
    35 /** This parameter or operation is supported, but presently is disabled. */ 
    36 static const TInt KErrECamSettingDisabled			= -12101;
    37 
    38 /** This value is out of range. */
    39 static const TInt KErrECamParameterNotInRange 		= -12102;
    40 
    41 /**
    42 @deprecated Use sysytem wide error code KErrNotSupported, since there is no clear cut difference between the two 
    43 */ 
    44 static const TInt KErrECamSettingNotSupported		= -12103;
    45 
    46 /** The optimum focus is lost */
    47 static const TInt KErrECamNotOptimalFocus 		= -12104;
    48 
    49 /** The flash is not charged */
    50 static const TInt KErrECamFlashNotCharged		= -12105;
    51 
    52 /**
    53 This error code is supposed to be used with new event KUidECamEventCIPSetColorSwapEntry 
    54 and KUidECamEventCIPRemoveColorSwapEntry.
    55 This would occur when the particular color is being targetted by 2 color entries for 
    56 conversion to different colors.
    57 
    58 */
    59 static const TInt KErrECamColorOperationConflict	= -12106;
    60 
    61 #endif // ECAMERRORS_H