equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: SUPL PSY panic definition |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __SUPLPSYPANIC_H__ |
|
20 #define __SUPLPSYPANIC_H__ |
|
21 |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32std.h> |
|
25 |
|
26 // CONSTANTS |
|
27 _LIT( KSuplPanicGategory, "SUPL PSY" ); |
|
28 |
|
29 |
|
30 // DATA TYPES |
|
31 enum TSuplPsyPanicReason |
|
32 { |
|
33 EPanicPositionRequestOngoing, //There is already position request ongoing |
|
34 EPanicPositionerAlreadyRegistered, //Positioner has already registered |
|
35 EPanicUnknownPositioningClass |
|
36 }; |
|
37 |
|
38 // FUNCTION PROTOTYPES |
|
39 inline void Panic( TInt aPanicCode ); |
|
40 |
|
41 #include "suplpsypanic.inl" |
|
42 |
|
43 #endif // __SUPLPSYPANIC_H__ |
|
44 |
|
45 // End of File |
|
46 |
|
47 |