os/graphics/graphicscomposition/surfaceupdate/inc/suerror.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2006-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 //
    15 
    16 #ifndef __SUERROR_H__
    17 #define __SUERROR_H__
    18 
    19 /**
    20 @file
    21 
    22 @publishedPartner
    23 @prototype
    24 */
    25 
    26 /**
    27 Signifies that the submit update request should be submitted to all content update receivers registered with the SUS.
    28 */
    29 const TInt KAllScreens = 0xffffff;  
    30 
    31 
    32 /**
    33 Surface Update Base error
    34 */
    35 const TInt KErrSurfaceUpdateBase = -220;
    36 
    37 /**
    38 Indicates that content update receiver backend for specified screen hasn't been registered with the server
    39 @deprecated use KErrUpdateReceiverNotAvailable
    40 */
    41 const TInt KErrBackendNotAvailable = -221;
    42 /**
    43 Indicates that no content update receiver has been registered for specified screen with the server
    44 */
    45 const TInt KErrUpdateReceiverNotAvailable = -221;
    46 
    47 /**
    48 Indicates that the surface hasn't been registered with the specific content update receiver
    49 */
    50 const TInt KErrSurfaceNotRegistered = -222;
    51 
    52 
    53 /**
    54 Indicates that the surface is not visible
    55 */
    56 const TInt KErrNotVisible = -223;
    57 
    58 #endif