skins/AknSkins/rlinc/AknsRlErr.h
changeset 0 05e9090e2422
equal deleted inserted replaced
-1:000000000000 0:05e9090e2422
       
     1 /*
       
     2 * Copyright (c) 2004-2008 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "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 *
       
    14 * Description:  Error codes for rendering plugins.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef AKNSRLERR_H
       
    20 #define AKNSRLERR_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 // CONSTANTS
       
    26 
       
    27 /**
       
    28 * Error code indicating that the requested effect was not available.
       
    29 * @since 2.8
       
    30 */
       
    31 static const TInt KAknsRlErrEffectNotAvailable    = -17001;
       
    32 
       
    33 /**
       
    34 * Error code indicating that the given layer index was out of bounds.
       
    35 * @since 2.8
       
    36 */
       
    37 static const TInt KAknsRlErrBadLayerIndex         = -17002;
       
    38 
       
    39 /**
       
    40 * Error code indicating that a class has reached an invalid internal state,
       
    41 * possibly because of invalid usage.
       
    42 * @since 2.8
       
    43 */
       
    44 static const TInt KAknsRlErrInternalState         = -17003;
       
    45 
       
    46 #endif // AKNSRLERR_H
       
    47 
       
    48 // End of File