equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: Connection UI panics. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __CNUIPANICS_H |
|
19 #define __CNUIPANICS_H |
|
20 |
|
21 // INCLUDES |
|
22 #include <E32Std.h> |
|
23 #include "impspresenceconnectionuiconstsng.h" |
|
24 |
|
25 |
|
26 /** |
|
27 * Connection UI panic handler. |
|
28 * @since 2.1 |
|
29 * @param The panic reason. |
|
30 */ |
|
31 GLREF_C void CnUiPanic( TIMPSConnectionUiPanicReason aReason ); |
|
32 |
|
33 |
|
34 /** |
|
35 * Connection UI panic & leave handler. |
|
36 * @param aPanicReason The reason for panic. |
|
37 * (Panic happens in debug builds.) |
|
38 * @param aLeaveCode The reason for leave. |
|
39 * (Happens in release builds.) |
|
40 * @since 1.2 |
|
41 */ |
|
42 GLREF_C void CnUiPanicOrLeaveL( TIMPSConnectionUiPanicReason aPanicReason, |
|
43 TInt aLeaveCode ); |
|
44 |
|
45 |
|
46 #endif //__CNUIPANICS_H |
|
47 // End of File |
|
48 |