homescreensrv_plat/sapi_menucontent/inc/serviceerrno.h
changeset 0 79c6a41cd166
equal deleted inserted replaced
-1:000000000000 0:79c6a41cd166
       
     1 /*
       
     2 * Copyright (c) 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef SERVICEERRNO_H
       
    20 #define SERVICEERRNO_H
       
    21 
       
    22 #define SERRBASE 1000
       
    23 
       
    24 enum SapiErrors
       
    25         {
       
    26         SErrNone ,
       
    27         SErrInvalidServiceArgument  = SERRBASE,
       
    28         SErrUnknownArgumentName ,
       
    29         SErrBadArgumentType ,
       
    30         SErrMissingArgument ,
       
    31         SErrServiceNotSupported ,
       
    32         SErrServiceInUse ,
       
    33         SErrServiceNotReady ,
       
    34         SErrNoMemory ,
       
    35         SErrHardwareNotAvailable ,
       
    36         SErrServerBusy ,
       
    37         SErrEntryExists ,
       
    38         SErrAccessDenied ,
       
    39         SErrNotFound ,
       
    40         SErrUnknownFormat ,
       
    41         SErrGeneralError ,
       
    42         SErrCancelSuccess,
       
    43         SErrServiceTimedOut
       
    44         };
       
    45 
       
    46 #endif