os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComErr.ra
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2001-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 RESOURCE ARRAY  r_error_res_ecom_errors
    17 	{
    18 	items=
    19 		{
    20 		SINGLE_ERROR
    21 			{
    22 			text=r_ecom_error_default;	//-17000	
    23 			},
    24 		SINGLE_ERROR
    25 			{
    26 			text=r_ecom_error_alreadyreceiving;	
    27 			},
    28 		SINGLE_ERROR
    29 			{
    30 			text=r_ecom_error_unknownservice;			
    31 			},
    32 		SINGLE_ERROR
    33 			{
    34 			text=r_ecom_error_invalidunloadpolicy;			
    35 			},
    36 		SINGLE_ERROR
    37 			{
    38 			text=r_ecom_error_nointerfaceidentified;			
    39 			},
    40 		SINGLE_ERROR
    41 			{
    42 			text=r_ecom_error_enablefailed;			
    43 			},
    44 		SINGLE_ERROR
    45 			{
    46 			text=r_ecom_error_disablefailed;			
    47 			},
    48 		SINGLE_ERROR
    49 			{
    50 			text=r_ecom_error_noregistrationsfound;			
    51 			},
    52 		SINGLE_ERROR
    53 			{
    54 			text=r_ecom_error_invalidiic;			
    55 			},
    56 		SINGLE_ERROR
    57 			{
    58 			text=r_ecom_error_uninstallfailed;			
    59 			},
    60 		SINGLE_ERROR
    61 			{
    62 			text=r_ecom_error_reinstallfailed;			
    63 			},
    64 		SINGLE_ERROR
    65 			{
    66 			text=r_ecom_error_registrationfailed;			
    67 			},
    68 		SINGLE_ERROR
    69 			{
    70 			text=r_ecom_error_notconnected;			
    71 			},
    72 		SINGLE_ERROR
    73 			{
    74 			text=r_ecom_error_referencecountinvalid;			
    75 			},
    76 		SINGLE_ERROR
    77 			{
    78 			text=r_ecom_error_noresolver;			
    79 			},
    80 		SINGLE_ERROR
    81 			{
    82 			text=r_ecom_error_suspendfailed;			
    83 			},
    84 		SINGLE_ERROR
    85 			{
    86 			text=r_ecom_error_resumefailed;			
    87 			},
    88 		SINGLE_ERROR
    89 			{
    90 			text=r_ecom_error_destructionfailed;			
    91 			},
    92 		SINGLE_ERROR
    93 			{
    94 			text=r_ecom_error_drivealreadyinstalled;			
    95 			},
    96 		SINGLE_ERROR
    97 			{
    98 			text=r_ecom_error_drivenotfound;			
    99 			},
   100 		SINGLE_ERROR
   101 			{
   102 			text=r_ecom_error_indexentrynotfound;			
   103 			},
   104 		SINGLE_ERROR
   105 			{
   106 			text=r_ecom_error_noregistrationdata;			
   107 			},
   108 		SINGLE_ERROR
   109 			{
   110 			text=r_ecom_error_invalidregistrydata;			
   111 			},
   112 		SINGLE_ERROR
   113 			{
   114 			text=r_ecom_error_mismatchedtags;			
   115 			},
   116 		SINGLE_ERROR
   117 			{
   118 			text=r_ecom_error_instantiationpointernotfound;			
   119 			},
   120 		SINGLE_ERROR
   121 			{
   122 			text=r_ecom_error_instantiationpointernotavailable;			
   123 			},
   124 		SINGLE_ERROR
   125 			{
   126 			text=r_ecom_error_toomanynotificationsoutstanding;			
   127 			},
   128 		SINGLE_ERROR
   129 			{
   130 			text=r_ecom_error_destroyingwithnulldtorkey;			
   131 			},
   132 		SINGLE_ERROR
   133 			{
   134 			text=r_ecom_error_missingparameter;			
   135 			},
   136 		SINGLE_ERROR
   137 			{
   138 			text=r_ecom_error_listinvalidawaitnotification;			
   139 			},
   140 		SINGLE_ERROR
   141 			{
   142 			text=r_ecom_error_listcurrentlyunavailable;
   143 			},
   144 		SINGLE_ERROR
   145 			{
   146 			text=r_ecom_error_noextendedinterfacereleasefunction;
   147 			},
   148 		SINGLE_ERROR
   149 			{
   150 			text=r_ecom_error_noextendedinterfacereleaseobject;
   151 			},
   152 		SINGLE_ERROR
   153 			{
   154 			text=r_ecom_error_notfoundscantimer;
   155 			}
   156 		};
   157 	}
   158 
   159 
   160 // Errors -17000 to -17033
   161 RESOURCE TBUF r_ecom_error_default{ buf="Unknown Ecom error"; }
   162 RESOURCE TBUF r_ecom_error_alreadyreceiving{ buf="Already recieving"; }
   163 RESOURCE TBUF r_ecom_error_unknownservice{ buf="The Client requested a service which is not supplied by this framework"; }
   164 RESOURCE TBUF r_ecom_error_invalidunloadpolicy{ buf="The Client requested a service which is not supplied by this framework"; }
   165 RESOURCE TBUF r_ecom_error_nointerfaceidentified{ buf="The call to instantiate an Interface Implementation failed because no registrations exist for this interface."; }
   166 RESOURCE TBUF r_ecom_error_enablefailed{ buf="The call to Enable the registered Interface Implementation failed."; }
   167 RESOURCE TBUF r_ecom_error_disablefailed{ buf="The call to Disable the registered Interface Implementation failed."; }
   168 RESOURCE TBUF r_ecom_error_noregistrationsfound{ buf="The call to instantiate an Interface Implementation failed because no appropriate implementation was found."; }
   169 RESOURCE TBUF r_ecom_error_invalidiic{ buf="The call to instantiate an Interface Implementation failed because the implementation caused an error."; }
   170 RESOURCE TBUF r_ecom_error_uninstallfailed{ buf="The call to Remove the registered Interface Implementation failed."; }
   171 RESOURCE TBUF r_ecom_error_reinstallfailed{ buf="The call to Re-register an Interface Implementation failed."; }
   172 RESOURCE TBUF r_ecom_error_registrationfailed{ buf="The call to Register an Interface Implementation failed."; }
   173 RESOURCE TBUF r_ecom_error_notconnected{ buf="The client does not have a session open with the framework."; }
   174 RESOURCE TBUF r_ecom_error_referencecountinvalid{ buf="The Interface Implementation reference count is invalid."; }
   175 RESOURCE TBUF r_ecom_error_noresolver{ buf="The Non-Default resolver could not be instantiated."; }
   176 RESOURCE TBUF r_ecom_error_suspendfailed{ buf="The call to Suspend registration activities failed."; }
   177 RESOURCE TBUF r_ecom_error_resumefailed{ buf="The call to Resume registration activities failed."; }
   178 RESOURCE TBUF r_ecom_error_destructionfailed{ buf="The Interface Implementations destruction could not be recorded."; }
   179 RESOURCE TBUF r_ecom_error_drivealreadyinstalled{ buf="The Interface Implementations drive has already been installed."; }
   180 RESOURCE TBUF r_ecom_error_drivenotfound{ buf="The Interface Implementations drive was not found."; }
   181 RESOURCE TBUF r_ecom_error_indexentrynotfound{ buf="The Interface Implementations drive was not found."; }
   182 RESOURCE TBUF r_ecom_error_noregistrationdata{ buf="The Interface Implementation has not been registered."; }
   183 RESOURCE TBUF r_ecom_error_invalidregistrydata{ buf="The Interface Implementation's registry data is corrupt."; }
   184 RESOURCE TBUF r_ecom_error_mismatchedtags{ buf="The Interface Implementation's registration file is invalid."; }
   185 RESOURCE TBUF r_ecom_error_instantiationpointernotfound{ buf="The Interface Implementation's instantiation method is missing."; }
   186 RESOURCE TBUF r_ecom_error_instantiationpointernotavailable{ buf="The Interface Implementation's instantiation method is missing."; }
   187 RESOURCE TBUF r_ecom_error_toomanynotificationsoutstanding{ buf="Too many notifications are already open on the ECom session."; }
   188 RESOURCE TBUF r_ecom_error_destroyingwithnulldtorkey{ buf="The Interface Implementation destruction id is invalid."; }
   189 RESOURCE TBUF r_ecom_error_missingparameter{ buf="The Interface Implementation construction has too few parameters."; }
   190 RESOURCE TBUF r_ecom_error_listinvalidawaitnotification{ buf="The registry is currently unavailable, (registration in progress), please await a notification and then try again."; }
   191 RESOURCE TBUF r_ecom_error_noextendedinterfacereleasefunction{ buf="The extended interface release function was not found."; }
   192 RESOURCE TBUF r_ecom_error_noextendedinterfacereleaseobject{ buf="The extended interface release function was not found."; }
   193 RESOURCE TBUF r_ecom_error_notfoundscantimer{ buf="The Interface implementation could not find a scan timer"; }
   194 RESOURCE TBUF r_ecom_error_listcurrentlyunavailable{ buf="The list is currently unavailable"; }