os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/EComInternalErrorCodes.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 // These Error Codes are used Internally within ECOM
    15 // 
    16 // 
    17 //
    18 
    19 /**
    20  @file
    21  @InternalTechnology
    22  @released
    23 */
    24 
    25 #ifndef ECOMINTERNALERRORCODES_H__
    26 #define ECOMINTERNALERRORCODES_H__
    27 
    28 
    29 
    30 //
    31 // Codes which are only used for Panics
    32 //
    33 
    34 
    35 /**
    36 An attempt has been made to update the registry information for a
    37 non-existent DLL.  An ECom internal error.
    38 */
    39 const TInt KEComErrInvalidRegistryData				= -17022;
    40 
    41 
    42 //
    43 // Error codes for internal use only
    44 //
    45 /**
    46 The Client requested a service which is not supplied by this framework
    47 */
    48 const TInt KEComErrInvalidUnloadPolicy				= -17003;
    49 
    50 /**
    51 An attempt has been made to load an implementation contained within a dll
    52 which no longer exists (deleted or is on a CF card that has been removed).
    53 */
    54 const TInt KEComErrInvalidIIC						= -17008;
    55 
    56 /**
    57 An attempt has been made to update registry information for a dll on a
    58 drive that does not exist.
    59 */
    60 const TInt KEComErrDriveNotFound					= -17019;
    61 
    62 //
    63 // Codes which are currently unused but reserved for future expansion
    64 //
    65 /**
    66 Internal error code.
    67 */
    68 const TInt KEComErrAlreadyReceiving					= -17001;
    69 
    70 
    71 /**
    72 Internal error code
    73 */
    74 const TInt KEComErrIndexEntryNotFound				= -17020;
    75 
    76 /**
    77 Internl error code
    78 */
    79 const TInt KEComErrInstantiationPointerNotFound		= -17024;
    80 
    81 /**
    82 Internal error code
    83 */
    84 const TInt KEComErrInstantiationPointerNotAvailable = -17025;
    85 
    86 #endif	// ECOMINTERNAL_ERRORCODES_H__