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: @publishedPartner sl@0: @released sl@0: @file sl@0: */ sl@0: sl@0: #ifndef ECAMERRORS_CONST_H sl@0: #define ECAMERRORS_CONST_H sl@0: sl@0: /** sl@0: This error code is supposed to be used whenever any fatal error occurs from which the client cannot recover. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TInt KErrECamFatalError = -12108; sl@0: sl@0: /** sl@0: If error is KErrECamImageResourceNotReleased and client wants to successfully call the Prepare method again, sl@0: client needs to delete all CCameraImageCapture objects and any Snapshot and Histogram objects associated with sl@0: it as well. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TInt KErrECamImageResourceNotReleased = -12109; sl@0: sl@0: /** sl@0: If error is KErrECamVideoResourceNotReleased and client wants to successfully call the Prepare method again, sl@0: client needs to call ReleaseVideoResource to unprepare video and then delete any Snapshot and Histogram sl@0: objects associated with it as well. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TInt KErrECamVideoResourceNotReleased = -12110; sl@0: sl@0: #endif // ECAMERRORS_CONST_H