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