lowlevellibsandfws/pluginfw/Framework/inc/EComExtendedInterfaceErrorCodes.h
changeset 0 e4d67989cc36
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 // Copyright (c) 1997-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 // All the ECOM Extended Intefcae specific error codes returned by the ECOM API to the phone manufacturers
       
    15 // are defined here.
       
    16 // 
       
    17 //
       
    18 
       
    19 /**
       
    20  @file
       
    21  @publishedPartner
       
    22  @released
       
    23 */
       
    24 
       
    25 #ifndef __ECOMEXTENDEDINTERFACEERRORCODES_H__
       
    26 #define __ECOMEXTENDEDINTERFACEERRORCODES_H__
       
    27 
       
    28 //used to get the base value for the error codes
       
    29 #include <ecom/ecomerrorcodes.h>
       
    30 
       
    31 
       
    32 /**
       
    33 An attempt was made to release an extended object, or the extended interface
       
    34 indicated that ECOM should perform automatic release but no release function
       
    35 pointer existed.
       
    36 @publishedPartner
       
    37 @released
       
    38 */
       
    39 const TInt KEComErrNoExtendedInterfaceReleaseFunction = -17031;
       
    40 
       
    41 /**
       
    42 An attempt was made to release an extended object, or the extended interface
       
    43 indicated that ECOM should perform automatic release but no release object
       
    44 existed.
       
    45 @publishedPartner
       
    46 @released
       
    47 */
       
    48 const TInt KEComErrNoExtendedInterfaceReleaseObject = -17032;
       
    49 
       
    50 
       
    51 #endif	// __ECOMEXTENDEDINTERFACEERRORCODES_H__