sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// All the ECOM specific error codes returned by the ECOM API to a client
|
sl@0
|
15 |
// are defined here.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
@publishedAll
|
sl@0
|
22 |
@released
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifndef __ECOMERRORCODES_H__
|
sl@0
|
26 |
#define __ECOMERRORCODES_H__
|
sl@0
|
27 |
|
sl@0
|
28 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
29 |
#include <ecom/ecomextendedinterfaceerrorcodes.h>
|
sl@0
|
30 |
#endif
|
sl@0
|
31 |
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
The base value for Shared Error codes for the ECOM framework and client
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
const TInt KEComErrBase = -17000;
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
The last value for ECom Frmework errors
|
sl@0
|
39 |
This must be modified when error codes are added/deleted
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
const TInt KEComErrLast = -17033;
|
sl@0
|
42 |
|
sl@0
|
43 |
//
|
sl@0
|
44 |
// Error codes which may be received by a client application
|
sl@0
|
45 |
//
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
The call to instantiate an Interface Implementation failed
|
sl@0
|
48 |
because no registrations exist for this interface.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
const TInt KEComErrNoInterfaceIdentified = -17004;
|
sl@0
|
51 |
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
The Non-Default resolver could not be instantiated. The most likely
|
sl@0
|
54 |
situation is that an incorrect implementation uid was supplied.
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
const TInt KEComErrNoResolver = -17014;
|
sl@0
|
57 |
|
sl@0
|
58 |
/**
|
sl@0
|
59 |
The client has requested too many notifications. ECom can only support
|
sl@0
|
60 |
a finite number of notifications
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
const TInt KEComErrTooManyNotificationsOutstanding = -17026;
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
An ECom service was requested with an essential parameter missing. For example,
|
sl@0
|
66 |
this error code will be supplied when calling an overload of CreateImplementationL
|
sl@0
|
67 |
which uses a non-default resolver if you fail to supply the resolver
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
const TInt KEComErrMissingParameter = -17028;
|
sl@0
|
70 |
|
sl@0
|
71 |
/** The registry index is invalid but the client has requested notifications - so
|
sl@0
|
72 |
they will receive a notification when the index is ready again
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
const TInt KEComErrListInvalidAwaitNotification = -17029;
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
The registry index is invalid and the client has not requested notifications.
|
sl@0
|
78 |
They will have to try again later after discoveries have completed.
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
const TInt KEComErrListCurrentlyUnavailable = -17030;
|
sl@0
|
81 |
|
sl@0
|
82 |
|
sl@0
|
83 |
//
|
sl@0
|
84 |
// Codes which are only used for Panics
|
sl@0
|
85 |
//
|
sl@0
|
86 |
/**
|
sl@0
|
87 |
The Client requested a service which is not supplied by this framework
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
const TInt KEComErrUnknownService = -17002;
|
sl@0
|
90 |
|
sl@0
|
91 |
/**
|
sl@0
|
92 |
The Interface Implementation reference count is invalid
|
sl@0
|
93 |
*/
|
sl@0
|
94 |
const TInt KEComErrReferenceCountInvalid = -17013;
|
sl@0
|
95 |
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
The Interface Implementations destruction could not be recorded
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
const TInt KEComErrDestructionFailed = -17017;
|
sl@0
|
100 |
|
sl@0
|
101 |
/**
|
sl@0
|
102 |
The uid from a resource plugin does not match the uid from its
|
sl@0
|
103 |
corrsponding DLL.
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
const TInt KEComErrMismatchedTags = -17023;
|
sl@0
|
106 |
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
The scanning timer for re-discovering plugins is not found in the list
|
sl@0
|
109 |
of scanning timers.
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
const TInt KEComErrNotFoundScanTimer = -17033;
|
sl@0
|
112 |
|
sl@0
|
113 |
/**
|
sl@0
|
114 |
The client called DestroyedImplementation with a destruction
|
sl@0
|
115 |
key of NULL. This is an irrecoverable error because the object
|
sl@0
|
116 |
cannot be deleted.
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
const TInt KEComErrDestroyingWithNullDtorKey = -17027;
|
sl@0
|
119 |
|
sl@0
|
120 |
//
|
sl@0
|
121 |
// Codes which are currently unused but reserved for future expansion
|
sl@0
|
122 |
//
|
sl@0
|
123 |
/**
|
sl@0
|
124 |
The call to Enable the registered Interface Implementation failed
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
const TInt KEComErrEnableFailed = -17005;
|
sl@0
|
127 |
|
sl@0
|
128 |
/**
|
sl@0
|
129 |
The call to Disable the registered Interface Implementation failed
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
const TInt KEComErrDisableFailed = -17006;
|
sl@0
|
132 |
|
sl@0
|
133 |
/**
|
sl@0
|
134 |
The call to instantiate an Interface Implementation failed
|
sl@0
|
135 |
because no appropriate implementation was found.
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
const TInt KEComErrNoRegistrationsFound = -17007;
|
sl@0
|
138 |
|
sl@0
|
139 |
/**
|
sl@0
|
140 |
The call to Remove the registered Interface Implementation failed
|
sl@0
|
141 |
*/
|
sl@0
|
142 |
const TInt KEComErrUninstallFailed = -17009;
|
sl@0
|
143 |
|
sl@0
|
144 |
/**
|
sl@0
|
145 |
The call to Re-register an Interface Implementation failed
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
const TInt KEComErrReinstallFailed = -17010;
|
sl@0
|
148 |
|
sl@0
|
149 |
/**
|
sl@0
|
150 |
The call to Register an Interface Implementation failed
|
sl@0
|
151 |
*/
|
sl@0
|
152 |
const TInt KEComErrRegistrationFailed = -17011;
|
sl@0
|
153 |
|
sl@0
|
154 |
/**
|
sl@0
|
155 |
The client does not have a session open with the framework
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
const TInt KEComErrNotConnected = -17012;
|
sl@0
|
158 |
|
sl@0
|
159 |
/**
|
sl@0
|
160 |
The call to Suspend registration activities failed
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
const TInt KEComErrSuspendFailed = -17015;
|
sl@0
|
163 |
|
sl@0
|
164 |
/**
|
sl@0
|
165 |
The call to Resume registration activities failed
|
sl@0
|
166 |
*/
|
sl@0
|
167 |
const TInt KEComErrResumeFailed = -17016;
|
sl@0
|
168 |
|
sl@0
|
169 |
/**
|
sl@0
|
170 |
An attempt has been made to add a drive to the registry which
|
sl@0
|
171 |
already exists
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
const TInt KEComErrDriveAlreadyInstalled = -17018;
|
sl@0
|
174 |
|
sl@0
|
175 |
/**
|
sl@0
|
176 |
An IIC has been found which does not have a corresponding
|
sl@0
|
177 |
registration information file
|
sl@0
|
178 |
*/
|
sl@0
|
179 |
const TInt KEComErrNoRegistrationData = -17021;
|
sl@0
|
180 |
|
sl@0
|
181 |
|
sl@0
|
182 |
|
sl@0
|
183 |
#endif // __ECOMERRORCODES_H__
|