locationrequestmgmt/networkrequesthandler/inc/nrhpanic.h
changeset 0 9cfd9a3ee49c
equal deleted inserted replaced
-1:000000000000 0:9cfd9a3ee49c
       
     1 // Copyright (c) 2008-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 "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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalTechnology
       
    19  @released
       
    20 */
       
    21 
       
    22 #ifndef NRHPANIC_H_
       
    23 #define NRHPANIC_H_
       
    24 
       
    25 #include <e32base.h>
       
    26 
       
    27 _LIT(KNrhPanic, "LBS-NRH");
       
    28 
       
    29 enum TNrhPanic
       
    30 	{
       
    31 	ENrhPanicIdleUnknownExitReason = 1,
       
    32 	ENrhPanicWaitLocReqUnknownExitReason = 2,
       
    33 	ENrhPanicWaitPrivRespUnknownExitReason = 3,
       
    34 	ENrhPanicWaitLocUpdateUnknownExitReason = 4,
       
    35 	ENrhPanicNoQualityProfile = 5,
       
    36 	ENrhPanicBadParamType = 6,
       
    37 	ENrhPanicLocationTimerError = 7,
       
    38 	ENrhPanicX3pTimerError = 8,
       
    39 	ENrhPanicExceededMaxNumExternalLocateRequest = 9,
       
    40 	ENrhPanicUnexpectedNetChannelId = 10,
       
    41 	ENrhPanicInvalidExternalRequestInfoType = 11,
       
    42 	ENrhPanicInvalidPowerModeAdviceIndex = 12,
       
    43 	ENrhPanicInvalidGpsModeCombination = 13,
       
    44 	ENrhPanicInvalidServerPointer = 14,
       
    45 	ENrhPanicInvalidStandalonPrivacySessionType = 15,
       
    46 	ENrhPanicOOMWhenProcessingEmergency = 16
       
    47 
       
    48 	};
       
    49 	
       
    50 void Panic(TNrhPanic aCategory);
       
    51 
       
    52 #endif // NRHPANIC_H_