os/kernelhwsrv/kernel/eka/include/e32err.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1994-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 the License "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
// e32\include\e32err.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @publishedAll
sl@0
    21
 @released
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __E32ERR_H__
sl@0
    25
#define __E32ERR_H__
sl@0
    26
#include <e32def.h>
sl@0
    27
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    28
#include <e32def_private.h>
sl@0
    29
#endif
sl@0
    30
sl@0
    31
sl@0
    32
/**
sl@0
    33
System wide error code 0 : this represents the no-error condition.
sl@0
    34
sl@0
    35
A system wide error code indicates an error in the environment, or in
sl@0
    36
user input from which a program may recover.
sl@0
    37
*/
sl@0
    38
const TInt KErrNone=0;                   
sl@0
    39
sl@0
    40
sl@0
    41
sl@0
    42
sl@0
    43
/**
sl@0
    44
System wide error code -1 : item not found.
sl@0
    45
sl@0
    46
A system wide error code indicates an error in the environment, or in
sl@0
    47
user input from which a program may recover.
sl@0
    48
*/
sl@0
    49
const TInt KErrNotFound=(-1); // Must remain set to -1
sl@0
    50
sl@0
    51
sl@0
    52
sl@0
    53
sl@0
    54
/**
sl@0
    55
System wide error code -2 : an error that has no specific categorisation.
sl@0
    56
sl@0
    57
A system wide error code indicates an error in the environment, or in
sl@0
    58
user input from which a program may recover.
sl@0
    59
*/
sl@0
    60
const TInt KErrGeneral=(-2);
sl@0
    61
sl@0
    62
sl@0
    63
sl@0
    64
sl@0
    65
/**
sl@0
    66
System wide error code -3 : indicates an operation that has been cancelled.
sl@0
    67
sl@0
    68
A system wide error code indicates an error in the environment, or in
sl@0
    69
user input from which a program may recover.
sl@0
    70
*/
sl@0
    71
const TInt KErrCancel=(-3);
sl@0
    72
sl@0
    73
sl@0
    74
sl@0
    75
sl@0
    76
/**
sl@0
    77
System wide error code -4 : an attempt to allocate memory has failed.
sl@0
    78
sl@0
    79
A system wide error code indicates an error in the environment, or in
sl@0
    80
user input from which a program may recover.
sl@0
    81
*/
sl@0
    82
const TInt KErrNoMemory=(-4);
sl@0
    83
sl@0
    84
sl@0
    85
sl@0
    86
sl@0
    87
/**
sl@0
    88
System wide error code -5 : some functionality is not supported in a given context.
sl@0
    89
sl@0
    90
A system wide error code indicates an error in the environment, or in
sl@0
    91
user input from which a program may recover.
sl@0
    92
sl@0
    93
There may be many reasons for this; for example, a device may not support
sl@0
    94
some specific behaviour.
sl@0
    95
*/
sl@0
    96
const TInt KErrNotSupported=(-5);
sl@0
    97
sl@0
    98
sl@0
    99
sl@0
   100
sl@0
   101
/**
sl@0
   102
System wide error code -6 : an argument is out of range.
sl@0
   103
sl@0
   104
A system wide error code indicates an error in the environment, or in
sl@0
   105
user input from which a program may recover.
sl@0
   106
*/
sl@0
   107
const TInt KErrArgument=(-6);
sl@0
   108
sl@0
   109
sl@0
   110
sl@0
   111
sl@0
   112
/**
sl@0
   113
System wide error code -7 : a calculation has lost precision.
sl@0
   114
sl@0
   115
A system wide error code indicates an error in the environment, or in
sl@0
   116
user input from which a program may recover.
sl@0
   117
sl@0
   118
This error arises when converting from an internal 96-bit real representation
sl@0
   119
to a TReal32; the exponent of the internal representation is so small
sl@0
   120
that the 32-bit real cannot contain it.
sl@0
   121
*/
sl@0
   122
const TInt KErrTotalLossOfPrecision=(-7);
sl@0
   123
sl@0
   124
sl@0
   125
sl@0
   126
sl@0
   127
/**
sl@0
   128
System wide error code -8 : an invalid handle has been passed.
sl@0
   129
sl@0
   130
A system wide error code indicates an error in the environment, or in
sl@0
   131
user input from which a program may recover.
sl@0
   132
sl@0
   133
A function involving a resource owned by a server or the kernel has
sl@0
   134
specified an invalid handle.
sl@0
   135
*/
sl@0
   136
const TInt KErrBadHandle=(-8);
sl@0
   137
sl@0
   138
sl@0
   139
sl@0
   140
sl@0
   141
/**
sl@0
   142
System wide error code -9 : indicates an overflow in some operation.
sl@0
   143
sl@0
   144
A system wide error code indicates an error in the environment, or in
sl@0
   145
user input from which a program may recover.
sl@0
   146
sl@0
   147
In the context of mathematical or time/date functions, indicates a calculation
sl@0
   148
that has produced arithmetic overflow exceeding the bounds allowed by
sl@0
   149
the representation.
sl@0
   150
sl@0
   151
In the context of data transfer, indicates that a buffer has over-filled
sl@0
   152
without being emptied soon enough.
sl@0
   153
*/
sl@0
   154
const TInt KErrOverflow=(-9);
sl@0
   155
sl@0
   156
sl@0
   157
sl@0
   158
sl@0
   159
/**
sl@0
   160
System wide error code -10 : indicates an underflow in some operation.
sl@0
   161
sl@0
   162
A system wide error code indicates an error in the environment, or in
sl@0
   163
user input from which a program may recover.
sl@0
   164
sl@0
   165
In the context of mathematical or time/date functions, indicates a calculation
sl@0
   166
that has produced a result smaller than the smallest magnitude of
sl@0
   167
a finite number allowed by the representation.
sl@0
   168
sl@0
   169
In the context of data transfer, indicates that a buffer was under-filled
sl@0
   170
when data was required.
sl@0
   171
*/
sl@0
   172
const TInt KErrUnderflow=(-10);
sl@0
   173
sl@0
   174
sl@0
   175
sl@0
   176
sl@0
   177
/**
sl@0
   178
System wide error code -11 : an object already exists.
sl@0
   179
sl@0
   180
A system wide error code indicates an error in the environment, or in
sl@0
   181
user input from which a program may recover.
sl@0
   182
sl@0
   183
An object of some name/type is to be created, but an object of
sl@0
   184
that name/type already exists.
sl@0
   185
*/
sl@0
   186
const TInt KErrAlreadyExists=(-11);
sl@0
   187
sl@0
   188
sl@0
   189
sl@0
   190
sl@0
   191
/**
sl@0
   192
System wide error code -12 : in the context of file operations, a path
sl@0
   193
was not found.
sl@0
   194
sl@0
   195
A system wide error code indicates an error in the environment, or in
sl@0
   196
user input from which a program may recover.
sl@0
   197
*/
sl@0
   198
const TInt KErrPathNotFound=(-12);
sl@0
   199
sl@0
   200
sl@0
   201
sl@0
   202
sl@0
   203
/**
sl@0
   204
System wide error code -13 : a handle refers to a thread that has died.
sl@0
   205
sl@0
   206
A system wide error code indicates an error in the environment, or in
sl@0
   207
user input from which a program may recover.
sl@0
   208
*/
sl@0
   209
const TInt KErrDied=(-13);
sl@0
   210
sl@0
   211
sl@0
   212
sl@0
   213
sl@0
   214
/**
sl@0
   215
System wide error code -14 : a requested resource is already in exclusive use.
sl@0
   216
sl@0
   217
A system wide error code indicates an error in the environment, or in
sl@0
   218
user input from which a program may recover.
sl@0
   219
*/
sl@0
   220
const TInt KErrInUse=(-14);
sl@0
   221
sl@0
   222
sl@0
   223
sl@0
   224
sl@0
   225
/**
sl@0
   226
System wide error code -15 : client/server send/receive operation cannot run,
sl@0
   227
because the server has terminated.
sl@0
   228
sl@0
   229
A system wide error code indicates an error in the environment, or in
sl@0
   230
user input from which a program may recover.
sl@0
   231
*/
sl@0
   232
const TInt KErrServerTerminated=(-15);
sl@0
   233
sl@0
   234
sl@0
   235
sl@0
   236
sl@0
   237
/**
sl@0
   238
System wide error code -16 : a client/server send/receive operation cannot run,
sl@0
   239
because the server is busy handling another request.
sl@0
   240
sl@0
   241
A system wide error code indicates an error in the environment, or in
sl@0
   242
user input from which a program may recover.
sl@0
   243
*/
sl@0
   244
const TInt KErrServerBusy=(-16);
sl@0
   245
sl@0
   246
sl@0
   247
sl@0
   248
sl@0
   249
/**
sl@0
   250
System wide error code -17 : indicates that an operation is complete,
sl@0
   251
successfully or otherwise.
sl@0
   252
sl@0
   253
A system wide error code indicates an error in the environment, or in
sl@0
   254
user input from which a program may recover.
sl@0
   255
sl@0
   256
This code may be used to indicate that some follow on operation can take place.
sl@0
   257
It does not necessarily indicate an error condition.
sl@0
   258
*/
sl@0
   259
const TInt KErrCompletion=(-17);
sl@0
   260
sl@0
   261
sl@0
   262
sl@0
   263
sl@0
   264
/**
sl@0
   265
System wide error code -18 : indicates that a device required by an i/o operation
sl@0
   266
is not ready to start operations.
sl@0
   267
sl@0
   268
A system wide error code indicates an error in the environment, or in
sl@0
   269
user input from which a program may recover.
sl@0
   270
sl@0
   271
A common reason for returning this code is because a device has not been
sl@0
   272
initialised, or has no power.
sl@0
   273
*/
sl@0
   274
const TInt KErrNotReady=(-18);
sl@0
   275
sl@0
   276
sl@0
   277
sl@0
   278
sl@0
   279
/**
sl@0
   280
System wide error code -19 : a device is of unknown type.
sl@0
   281
sl@0
   282
A system wide error code indicates an error in the environment, or in
sl@0
   283
user input from which a program may recover.
sl@0
   284
*/
sl@0
   285
const TInt KErrUnknown=(-19);
sl@0
   286
sl@0
   287
sl@0
   288
sl@0
   289
sl@0
   290
/**
sl@0
   291
System wide error code -20 : indicates that some media is not formatted properly,
sl@0
   292
or links between sections of it have been corrupted.
sl@0
   293
sl@0
   294
A system wide error code indicates an error in the environment, or in
sl@0
   295
user input from which a program may recover.
sl@0
   296
*/
sl@0
   297
const TInt KErrCorrupt=(-20);
sl@0
   298
sl@0
   299
sl@0
   300
sl@0
   301
sl@0
   302
/**
sl@0
   303
System wide error code -21 : access to a file is denied, because the permissions on
sl@0
   304
the file do not allow the requested operation to be performed.
sl@0
   305
sl@0
   306
A system wide error code indicates an error in the environment, or in
sl@0
   307
user input from which a program may recover.
sl@0
   308
*/
sl@0
   309
const TInt KErrAccessDenied=(-21);
sl@0
   310
sl@0
   311
sl@0
   312
sl@0
   313
sl@0
   314
/**
sl@0
   315
System wide error code -22 : an operation cannot be performed, because the part
sl@0
   316
of the file to be read or written is locked.
sl@0
   317
sl@0
   318
A system wide error code indicates an error in the environment, or in
sl@0
   319
user input from which a program may recover.
sl@0
   320
*/
sl@0
   321
const TInt KErrLocked=(-22);
sl@0
   322
sl@0
   323
sl@0
   324
sl@0
   325
sl@0
   326
/**
sl@0
   327
System wide error code -23 : during a file write operation, not all the data
sl@0
   328
could be written.
sl@0
   329
sl@0
   330
A system wide error code indicates an error in the environment, or in
sl@0
   331
user input from which a program may recover.
sl@0
   332
*/
sl@0
   333
const TInt KErrWrite=(-23);
sl@0
   334
sl@0
   335
sl@0
   336
sl@0
   337
sl@0
   338
/**
sl@0
   339
System wide error code -24 : a volume which was to be used for a file system
sl@0
   340
operation has been dismounted.
sl@0
   341
sl@0
   342
A system wide error code indicates an error in the environment, or in
sl@0
   343
user input from which a program may recover.
sl@0
   344
*/
sl@0
   345
const TInt KErrDisMounted=(-24);
sl@0
   346
sl@0
   347
sl@0
   348
sl@0
   349
sl@0
   350
/**
sl@0
   351
System wide error code -25 : indicates that end of file has been reached.
sl@0
   352
sl@0
   353
A system wide error code indicates an error in the environment, or in
sl@0
   354
user input from which a program may recover.
sl@0
   355
sl@0
   356
Note that RFile::Read() is a higher-level interface. When the end of
sl@0
   357
the file is reached, it returns zero bytes in the destination descriptor, and
sl@0
   358
a KErrNone return value. KErrEof is not used for this purpose; other error
sl@0
   359
conditions are returned only if some other error condition was indicated on
sl@0
   360
the file.
sl@0
   361
*/
sl@0
   362
const TInt KErrEof=(-25);
sl@0
   363
sl@0
   364
sl@0
   365
sl@0
   366
sl@0
   367
/**
sl@0
   368
System wide error code -26 : a write operation cannot complete, because the disk
sl@0
   369
is full.
sl@0
   370
sl@0
   371
A system wide error code indicates an error in the environment, or in
sl@0
   372
user input from which a program may recover.
sl@0
   373
*/
sl@0
   374
const TInt KErrDiskFull=(-26);
sl@0
   375
sl@0
   376
sl@0
   377
sl@0
   378
sl@0
   379
/**
sl@0
   380
System wide error code -27 : a driver DLL is of the wrong type.
sl@0
   381
sl@0
   382
A system wide error code indicates an error in the environment, or in
sl@0
   383
user input from which a program may recover.
sl@0
   384
*/
sl@0
   385
const TInt KErrBadDriver=(-27);
sl@0
   386
sl@0
   387
sl@0
   388
sl@0
   389
sl@0
   390
/**
sl@0
   391
System wide error code -28 : a file name or other object name does not conform to
sl@0
   392
the required syntax.
sl@0
   393
sl@0
   394
A system wide error code indicates an error in the environment, or in
sl@0
   395
user input from which a program may recover.
sl@0
   396
*/
sl@0
   397
const TInt KErrBadName=(-28);
sl@0
   398
sl@0
   399
sl@0
   400
sl@0
   401
sl@0
   402
/**
sl@0
   403
System wide error code -29 : a communication line has failed.
sl@0
   404
sl@0
   405
A system wide error code indicates an error in the environment, or in
sl@0
   406
user input from which a program may recover.
sl@0
   407
*/
sl@0
   408
const TInt KErrCommsLineFail=(-29);
sl@0
   409
sl@0
   410
sl@0
   411
sl@0
   412
sl@0
   413
/**
sl@0
   414
System wide error code -30 : a frame error has occurred in
sl@0
   415
a communications operation.
sl@0
   416
sl@0
   417
A system wide error code indicates an error in the environment, or in
sl@0
   418
user input from which a program may recover.
sl@0
   419
*/
sl@0
   420
const TInt KErrCommsFrame=(-30);
sl@0
   421
sl@0
   422
sl@0
   423
sl@0
   424
sl@0
   425
/**
sl@0
   426
System wide error code -31 : an overrun has been detected by
sl@0
   427
a communications driver.
sl@0
   428
sl@0
   429
A system wide error code indicates an error in the environment, or in
sl@0
   430
user input from which a program may recover.
sl@0
   431
*/
sl@0
   432
const TInt KErrCommsOverrun=(-31);
sl@0
   433
sl@0
   434
sl@0
   435
sl@0
   436
sl@0
   437
/**
sl@0
   438
System wide error code -32 : a parity error has occurred in communications.
sl@0
   439
sl@0
   440
A system wide error code indicates an error in the environment, or in
sl@0
   441
user input from which a program may recover.
sl@0
   442
*/
sl@0
   443
const TInt KErrCommsParity=(-32);
sl@0
   444
sl@0
   445
sl@0
   446
sl@0
   447
sl@0
   448
/**
sl@0
   449
System wide error code -33 : an operation has timed out.
sl@0
   450
sl@0
   451
A system wide error code indicates an error in the environment, or in
sl@0
   452
user input from which a program may recover.
sl@0
   453
*/
sl@0
   454
const TInt KErrTimedOut=(-33);
sl@0
   455
sl@0
   456
sl@0
   457
sl@0
   458
sl@0
   459
/**
sl@0
   460
System wide error code -34 : a session could not connect.
sl@0
   461
sl@0
   462
A system wide error code indicates an error in the environment, or in
sl@0
   463
user input from which a program may recover.
sl@0
   464
*/
sl@0
   465
const TInt KErrCouldNotConnect=(-34);
sl@0
   466
sl@0
   467
sl@0
   468
sl@0
   469
sl@0
   470
/**
sl@0
   471
System wide error code -35 : a session could not disconnect.
sl@0
   472
sl@0
   473
A system wide error code indicates an error in the environment, or in
sl@0
   474
user input from which a program may recover.
sl@0
   475
*/
sl@0
   476
const TInt KErrCouldNotDisconnect=(-35);
sl@0
   477
sl@0
   478
sl@0
   479
sl@0
   480
sl@0
   481
/**
sl@0
   482
System wide error code -36 : a function could not be executed because the required
sl@0
   483
session was disconnected.
sl@0
   484
sl@0
   485
A system wide error code indicates an error in the environment, or in
sl@0
   486
user input from which a program may recover.
sl@0
   487
*/
sl@0
   488
const TInt KErrDisconnected=(-36);
sl@0
   489
sl@0
   490
sl@0
   491
sl@0
   492
sl@0
   493
/**
sl@0
   494
System wide error code -37 : a library entry point was not of the required type.
sl@0
   495
sl@0
   496
A system wide error code indicates an error in the environment, or in
sl@0
   497
user input from which a program may recover.
sl@0
   498
*/
sl@0
   499
const TInt KErrBadLibraryEntryPoint=(-37);
sl@0
   500
sl@0
   501
sl@0
   502
sl@0
   503
sl@0
   504
/**
sl@0
   505
System wide error code -38 : a non-descriptor parameter was passed by
sl@0
   506
a client interface, when a server expected a descriptor.
sl@0
   507
sl@0
   508
A system wide error code indicates an error in the environment, or in
sl@0
   509
user input from which a program may recover.
sl@0
   510
*/
sl@0
   511
const TInt KErrBadDescriptor=(-38);
sl@0
   512
sl@0
   513
sl@0
   514
sl@0
   515
sl@0
   516
/**
sl@0
   517
System wide error code -39 : an operation has been aborted.
sl@0
   518
sl@0
   519
A system wide error code indicates an error in the environment, or in
sl@0
   520
user input from which a program may recover.
sl@0
   521
*/
sl@0
   522
const TInt KErrAbort=(-39);
sl@0
   523
sl@0
   524
sl@0
   525
sl@0
   526
sl@0
   527
/**
sl@0
   528
System wide error code -40 : a number was too big.
sl@0
   529
sl@0
   530
A system wide error code indicates an error in the environment, or in
sl@0
   531
user input from which a program may recover.
sl@0
   532
*/
sl@0
   533
const TInt KErrTooBig=(-40);
sl@0
   534
sl@0
   535
sl@0
   536
sl@0
   537
sl@0
   538
/**
sl@0
   539
System wide error code -41 : a divide-by-zero operation has been attempted.
sl@0
   540
sl@0
   541
A system wide error code indicates an error in the environment, or in
sl@0
   542
user input from which a program may recover.
sl@0
   543
*/
sl@0
   544
const TInt KErrDivideByZero=(-41);		// Added by AnnW
sl@0
   545
sl@0
   546
sl@0
   547
sl@0
   548
sl@0
   549
/**
sl@0
   550
System wide error code -42 : insufficient power was available to
sl@0
   551
complete an operation.
sl@0
   552
sl@0
   553
A system wide error code indicates an error in the environment, or in
sl@0
   554
user input from which a program may recover.
sl@0
   555
*/
sl@0
   556
const TInt KErrBadPower=(-42);
sl@0
   557
sl@0
   558
sl@0
   559
sl@0
   560
sl@0
   561
/**
sl@0
   562
System wide error code -43 : an operation on a directory has failed.
sl@0
   563
sl@0
   564
A system wide error code indicates an error in the environment, or in
sl@0
   565
user input from which a program may recover.
sl@0
   566
*/
sl@0
   567
const TInt KErrDirFull=(-43);
sl@0
   568
sl@0
   569
sl@0
   570
sl@0
   571
sl@0
   572
/**
sl@0
   573
System wide error code -44 : an operation cannot be performed because
sl@0
   574
the necessary hardware is not available.
sl@0
   575
sl@0
   576
A system wide error code indicates an error in the environment, or in
sl@0
   577
user input from which a program may recover.
sl@0
   578
*/
sl@0
   579
const TInt KErrHardwareNotAvailable=(-44);
sl@0
   580
sl@0
   581
sl@0
   582
sl@0
   583
sl@0
   584
/**
sl@0
   585
System wide error code -45 : the completion status when an outstanding
sl@0
   586
client/server message is completed because a shared session has been closed.
sl@0
   587
sl@0
   588
A system wide error code indicates an error in the environment, or in
sl@0
   589
user input from which a program may recover.
sl@0
   590
*/
sl@0
   591
const TInt KErrSessionClosed=(-45);
sl@0
   592
sl@0
   593
sl@0
   594
sl@0
   595
sl@0
   596
/**
sl@0
   597
System wide error code -46 : an operation cannot be performed due to
sl@0
   598
a potential security violation.
sl@0
   599
sl@0
   600
A system wide error code indicates an error in the environment, or in
sl@0
   601
user input from which a program may recover.
sl@0
   602
*/
sl@0
   603
const TInt KErrPermissionDenied=(-46);
sl@0
   604
sl@0
   605
sl@0
   606
sl@0
   607
/**
sl@0
   608
System wide error code -47 : a requested extension function is not
sl@0
   609
supported by the object concerned.
sl@0
   610
sl@0
   611
*/
sl@0
   612
const TInt KErrExtensionNotSupported=(-47);
sl@0
   613
sl@0
   614
sl@0
   615
sl@0
   616
/**
sl@0
   617
System wide error code -48 : a break has occurred in
sl@0
   618
a communications operation.
sl@0
   619
sl@0
   620
A system wide error code indicates an error in the environment, or in
sl@0
   621
user input from which a program may recover.
sl@0
   622
*/
sl@0
   623
const TInt KErrCommsBreak=(-48);
sl@0
   624
sl@0
   625
sl@0
   626
/**
sl@0
   627
System wide error code -49 : a trusted time source could not be found
sl@0
   628
and any time value given in conjunction with this error code should 
sl@0
   629
not be trusted as correct.
sl@0
   630
*/
sl@0
   631
const TInt KErrNoSecureTime =(-49);
sl@0
   632
sl@0
   633
sl@0
   634
 
sl@0
   635
/**
sl@0
   636
System wide error code -50 : a corrupt surrogate is found when processing
sl@0
   637
a descriptor or a text buffer.
sl@0
   638
*/
sl@0
   639
const TInt KErrCorruptSurrogateFound = (-50);
sl@0
   640
sl@0
   641
sl@0
   642
#endif