imgeditor_plat/image_editor_definitions_api/inc/ImageEditorError.h
changeset 1 edfc90759b9f
equal deleted inserted replaced
0:57d4cdd99204 1:edfc90759b9f
       
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - Initial contribution
       
    11 *
       
    12 * Contributors:
       
    13 * Ixonos Plc
       
    14 *
       
    15 * Description: 
       
    16 * Image editor related error codes.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef IMAGEEDITORERROR_H
       
    22 #define IMAGEEDITORERROR_H
       
    23 
       
    24 const TInt KSIEENone = KErrNone;
       
    25 const TInt KSIEEErrorBase = -60000;
       
    26 const TInt KSIEENotEnoughDiskSpace = KSIEEErrorBase - 2;
       
    27 const TInt KSIEEOpenFile = KSIEEErrorBase - 3;
       
    28 const TInt KSIEESaveFile = KSIEEErrorBase - 4;
       
    29 const TInt KSIEEProcessFile	= KSIEEErrorBase - 5;
       
    30 const TInt KSIEEEngine = KSIEEErrorBase - 6;
       
    31 const TInt KSIEEInternal = KSIEEErrorBase - 7;
       
    32 const TInt KSIEEInternalNonRecoverable = KSIEEErrorBase - 8;
       
    33 const TInt KSIEEProtectedFile = KSIEEErrorBase - 9;
       
    34 const TInt KSIEEExifRead = KSIEEErrorBase - 10; // should be handled exactly like KSIEEOpenFile
       
    35 const TInt KSIEEExifUpdate = KSIEEErrorBase - 11;
       
    36 const TInt KSIEEIncompatibleImage = KSIEEErrorBase - 12;
       
    37 const TInt KSIEEFileExists = KSIEEErrorBase - 13; 
       
    38 const TInt KSIEEErrorOkToExit = KSIEEErrorBase - 98;
       
    39 const TInt KSIEEErrorMax = KSIEEErrorBase - 99;
       
    40 
       
    41 #endif // IMAGEEDITORERROR_H