Update contrib.
1 // Copyright (c) 1994-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 the License "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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\e32err.h
27 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
28 #include <e32def_private.h>
33 System wide error code 0 : this represents the no-error condition.
35 A system wide error code indicates an error in the environment, or in
36 user input from which a program may recover.
38 const TInt KErrNone=0;
44 System wide error code -1 : item not found.
46 A system wide error code indicates an error in the environment, or in
47 user input from which a program may recover.
49 const TInt KErrNotFound=(-1); // Must remain set to -1
55 System wide error code -2 : an error that has no specific categorisation.
57 A system wide error code indicates an error in the environment, or in
58 user input from which a program may recover.
60 const TInt KErrGeneral=(-2);
66 System wide error code -3 : indicates an operation that has been cancelled.
68 A system wide error code indicates an error in the environment, or in
69 user input from which a program may recover.
71 const TInt KErrCancel=(-3);
77 System wide error code -4 : an attempt to allocate memory has failed.
79 A system wide error code indicates an error in the environment, or in
80 user input from which a program may recover.
82 const TInt KErrNoMemory=(-4);
88 System wide error code -5 : some functionality is not supported in a given context.
90 A system wide error code indicates an error in the environment, or in
91 user input from which a program may recover.
93 There may be many reasons for this; for example, a device may not support
94 some specific behaviour.
96 const TInt KErrNotSupported=(-5);
102 System wide error code -6 : an argument is out of range.
104 A system wide error code indicates an error in the environment, or in
105 user input from which a program may recover.
107 const TInt KErrArgument=(-6);
113 System wide error code -7 : a calculation has lost precision.
115 A system wide error code indicates an error in the environment, or in
116 user input from which a program may recover.
118 This error arises when converting from an internal 96-bit real representation
119 to a TReal32; the exponent of the internal representation is so small
120 that the 32-bit real cannot contain it.
122 const TInt KErrTotalLossOfPrecision=(-7);
128 System wide error code -8 : an invalid handle has been passed.
130 A system wide error code indicates an error in the environment, or in
131 user input from which a program may recover.
133 A function involving a resource owned by a server or the kernel has
134 specified an invalid handle.
136 const TInt KErrBadHandle=(-8);
142 System wide error code -9 : indicates an overflow in some operation.
144 A system wide error code indicates an error in the environment, or in
145 user input from which a program may recover.
147 In the context of mathematical or time/date functions, indicates a calculation
148 that has produced arithmetic overflow exceeding the bounds allowed by
151 In the context of data transfer, indicates that a buffer has over-filled
152 without being emptied soon enough.
154 const TInt KErrOverflow=(-9);
160 System wide error code -10 : indicates an underflow in some operation.
162 A system wide error code indicates an error in the environment, or in
163 user input from which a program may recover.
165 In the context of mathematical or time/date functions, indicates a calculation
166 that has produced a result smaller than the smallest magnitude of
167 a finite number allowed by the representation.
169 In the context of data transfer, indicates that a buffer was under-filled
170 when data was required.
172 const TInt KErrUnderflow=(-10);
178 System wide error code -11 : an object already exists.
180 A system wide error code indicates an error in the environment, or in
181 user input from which a program may recover.
183 An object of some name/type is to be created, but an object of
184 that name/type already exists.
186 const TInt KErrAlreadyExists=(-11);
192 System wide error code -12 : in the context of file operations, a path
195 A system wide error code indicates an error in the environment, or in
196 user input from which a program may recover.
198 const TInt KErrPathNotFound=(-12);
204 System wide error code -13 : a handle refers to a thread that has died.
206 A system wide error code indicates an error in the environment, or in
207 user input from which a program may recover.
209 const TInt KErrDied=(-13);
215 System wide error code -14 : a requested resource is already in exclusive use.
217 A system wide error code indicates an error in the environment, or in
218 user input from which a program may recover.
220 const TInt KErrInUse=(-14);
226 System wide error code -15 : client/server send/receive operation cannot run,
227 because the server has terminated.
229 A system wide error code indicates an error in the environment, or in
230 user input from which a program may recover.
232 const TInt KErrServerTerminated=(-15);
238 System wide error code -16 : a client/server send/receive operation cannot run,
239 because the server is busy handling another request.
241 A system wide error code indicates an error in the environment, or in
242 user input from which a program may recover.
244 const TInt KErrServerBusy=(-16);
250 System wide error code -17 : indicates that an operation is complete,
251 successfully or otherwise.
253 A system wide error code indicates an error in the environment, or in
254 user input from which a program may recover.
256 This code may be used to indicate that some follow on operation can take place.
257 It does not necessarily indicate an error condition.
259 const TInt KErrCompletion=(-17);
265 System wide error code -18 : indicates that a device required by an i/o operation
266 is not ready to start operations.
268 A system wide error code indicates an error in the environment, or in
269 user input from which a program may recover.
271 A common reason for returning this code is because a device has not been
272 initialised, or has no power.
274 const TInt KErrNotReady=(-18);
280 System wide error code -19 : a device is of unknown type.
282 A system wide error code indicates an error in the environment, or in
283 user input from which a program may recover.
285 const TInt KErrUnknown=(-19);
291 System wide error code -20 : indicates that some media is not formatted properly,
292 or links between sections of it have been corrupted.
294 A system wide error code indicates an error in the environment, or in
295 user input from which a program may recover.
297 const TInt KErrCorrupt=(-20);
303 System wide error code -21 : access to a file is denied, because the permissions on
304 the file do not allow the requested operation to be performed.
306 A system wide error code indicates an error in the environment, or in
307 user input from which a program may recover.
309 const TInt KErrAccessDenied=(-21);
315 System wide error code -22 : an operation cannot be performed, because the part
316 of the file to be read or written is locked.
318 A system wide error code indicates an error in the environment, or in
319 user input from which a program may recover.
321 const TInt KErrLocked=(-22);
327 System wide error code -23 : during a file write operation, not all the data
330 A system wide error code indicates an error in the environment, or in
331 user input from which a program may recover.
333 const TInt KErrWrite=(-23);
339 System wide error code -24 : a volume which was to be used for a file system
340 operation has been dismounted.
342 A system wide error code indicates an error in the environment, or in
343 user input from which a program may recover.
345 const TInt KErrDisMounted=(-24);
351 System wide error code -25 : indicates that end of file has been reached.
353 A system wide error code indicates an error in the environment, or in
354 user input from which a program may recover.
356 Note that RFile::Read() is a higher-level interface. When the end of
357 the file is reached, it returns zero bytes in the destination descriptor, and
358 a KErrNone return value. KErrEof is not used for this purpose; other error
359 conditions are returned only if some other error condition was indicated on
362 const TInt KErrEof=(-25);
368 System wide error code -26 : a write operation cannot complete, because the disk
371 A system wide error code indicates an error in the environment, or in
372 user input from which a program may recover.
374 const TInt KErrDiskFull=(-26);
380 System wide error code -27 : a driver DLL is of the wrong type.
382 A system wide error code indicates an error in the environment, or in
383 user input from which a program may recover.
385 const TInt KErrBadDriver=(-27);
391 System wide error code -28 : a file name or other object name does not conform to
394 A system wide error code indicates an error in the environment, or in
395 user input from which a program may recover.
397 const TInt KErrBadName=(-28);
403 System wide error code -29 : a communication line has failed.
405 A system wide error code indicates an error in the environment, or in
406 user input from which a program may recover.
408 const TInt KErrCommsLineFail=(-29);
414 System wide error code -30 : a frame error has occurred in
415 a communications operation.
417 A system wide error code indicates an error in the environment, or in
418 user input from which a program may recover.
420 const TInt KErrCommsFrame=(-30);
426 System wide error code -31 : an overrun has been detected by
427 a communications driver.
429 A system wide error code indicates an error in the environment, or in
430 user input from which a program may recover.
432 const TInt KErrCommsOverrun=(-31);
438 System wide error code -32 : a parity error has occurred in communications.
440 A system wide error code indicates an error in the environment, or in
441 user input from which a program may recover.
443 const TInt KErrCommsParity=(-32);
449 System wide error code -33 : an operation has timed out.
451 A system wide error code indicates an error in the environment, or in
452 user input from which a program may recover.
454 const TInt KErrTimedOut=(-33);
460 System wide error code -34 : a session could not connect.
462 A system wide error code indicates an error in the environment, or in
463 user input from which a program may recover.
465 const TInt KErrCouldNotConnect=(-34);
471 System wide error code -35 : a session could not disconnect.
473 A system wide error code indicates an error in the environment, or in
474 user input from which a program may recover.
476 const TInt KErrCouldNotDisconnect=(-35);
482 System wide error code -36 : a function could not be executed because the required
483 session was disconnected.
485 A system wide error code indicates an error in the environment, or in
486 user input from which a program may recover.
488 const TInt KErrDisconnected=(-36);
494 System wide error code -37 : a library entry point was not of the required type.
496 A system wide error code indicates an error in the environment, or in
497 user input from which a program may recover.
499 const TInt KErrBadLibraryEntryPoint=(-37);
505 System wide error code -38 : a non-descriptor parameter was passed by
506 a client interface, when a server expected a descriptor.
508 A system wide error code indicates an error in the environment, or in
509 user input from which a program may recover.
511 const TInt KErrBadDescriptor=(-38);
517 System wide error code -39 : an operation has been aborted.
519 A system wide error code indicates an error in the environment, or in
520 user input from which a program may recover.
522 const TInt KErrAbort=(-39);
528 System wide error code -40 : a number was too big.
530 A system wide error code indicates an error in the environment, or in
531 user input from which a program may recover.
533 const TInt KErrTooBig=(-40);
539 System wide error code -41 : a divide-by-zero operation has been attempted.
541 A system wide error code indicates an error in the environment, or in
542 user input from which a program may recover.
544 const TInt KErrDivideByZero=(-41); // Added by AnnW
550 System wide error code -42 : insufficient power was available to
551 complete an operation.
553 A system wide error code indicates an error in the environment, or in
554 user input from which a program may recover.
556 const TInt KErrBadPower=(-42);
562 System wide error code -43 : an operation on a directory has failed.
564 A system wide error code indicates an error in the environment, or in
565 user input from which a program may recover.
567 const TInt KErrDirFull=(-43);
573 System wide error code -44 : an operation cannot be performed because
574 the necessary hardware is not available.
576 A system wide error code indicates an error in the environment, or in
577 user input from which a program may recover.
579 const TInt KErrHardwareNotAvailable=(-44);
585 System wide error code -45 : the completion status when an outstanding
586 client/server message is completed because a shared session has been closed.
588 A system wide error code indicates an error in the environment, or in
589 user input from which a program may recover.
591 const TInt KErrSessionClosed=(-45);
597 System wide error code -46 : an operation cannot be performed due to
598 a potential security violation.
600 A system wide error code indicates an error in the environment, or in
601 user input from which a program may recover.
603 const TInt KErrPermissionDenied=(-46);
608 System wide error code -47 : a requested extension function is not
609 supported by the object concerned.
612 const TInt KErrExtensionNotSupported=(-47);
617 System wide error code -48 : a break has occurred in
618 a communications operation.
620 A system wide error code indicates an error in the environment, or in
621 user input from which a program may recover.
623 const TInt KErrCommsBreak=(-48);
627 System wide error code -49 : a trusted time source could not be found
628 and any time value given in conjunction with this error code should
629 not be trusted as correct.
631 const TInt KErrNoSecureTime =(-49);
636 System wide error code -50 : a corrupt surrogate is found when processing
637 a descriptor or a text buffer.
639 const TInt KErrCorruptSurrogateFound = (-50);