epoc32/include/mw/lbterrors.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     1 /*
     2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  Location Triggering panic category and panic code
    15 *
    16 */
    17 
    18 
    19 #ifndef LBTERRORS_H
    20 #define LBTERRORS_H
    21 
    22 #include <e32def.h>
    23 #include <e32cmn.h>
    24 
    25 /**
    26  * Location Triggering Client API panic categories
    27  */
    28 _LIT( KLbtClientPanicCategory, "LocTriggering" );
    29 
    30 /**
    31  * Location Triggering Client API panic codes
    32  */
    33 enum TLbtClientPanic
    34     {
    35     /** 
    36      * An attempt has been made to connect using an already opened handle. 
    37      */
    38     ELbtServerHandleNotClosed = 1,
    39     /** 
    40      * An attempt to communicate using an unconnected handle.
    41      */
    42     ELbtServerBadHandle = 2,
    43     /** 
    44      * A subsession was closed with requests still outstanding. 
    45      */
    46     ELbtRequestsNotCancelled = 3,
    47     /** 
    48      * An attempt to get trigger objects incrementally when iterator was not
    49      * created.
    50      */
    51     ELbtIteratorNotCreated = 4,
    52     /** 
    53      * A client has called an asynchronous request while it is still outstanding.
    54      */
    55     ELbtDuplicateRequest = 5,
    56     /** 
    57      * Wrong value is given as parameter.
    58      */
    59     ELbtErrArgument = 6
    60     };
    61 
    62 
    63 #endif //LBTERRORS_H