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: Landmarks Server panic codes used for panicking a client. |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include "EPos_LandmarksServerPanics.h" |
|
22 |
|
23 // ----------------------------------------------------------------------------- |
|
24 // PanicClient |
|
25 // ----------------------------------------------------------------------------- |
|
26 GLDEF_C void PanicClient( |
|
27 const RMessagePtr2& aMessagePtr, |
|
28 TInt aReason) |
|
29 { |
|
30 if (!aMessagePtr.IsNull()) |
|
31 { |
|
32 aMessagePtr.Panic(KPosLandmarksServerPanic, aReason); |
|
33 } |
|
34 } |
|
35 |
|
36 // ----------------------------------------------------------------------------- |
|
37 // PanicServer |
|
38 // ----------------------------------------------------------------------------- |
|
39 GLDEF_C void PanicServer( |
|
40 TInt aReason) |
|
41 { |
|
42 User::Panic(KPosLandmarksServerPanic, aReason); |
|
43 } |
|
44 // End of File |