|
1 /* |
|
2 * Copyright (c) 2007-2009 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 the License "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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 /** |
|
20 @file |
|
21 @test |
|
22 */ |
|
23 |
|
24 #if (!defined TUPS_SUITEDEFS_H) |
|
25 #define TUPS_SUITEDEFS_H |
|
26 |
|
27 // Posible status for Dialog creator |
|
28 #define KUpsDcStatusReset 0x0010 |
|
29 #define KUpsDcStatusStarted 0x0011 |
|
30 #define KUpsDcStatusPrepareHold 0x0012 |
|
31 #define KUpsDcStatusDisplayHold 0x0013 |
|
32 #define KUpsDcStatusCompleted 0x0014 |
|
33 const TInt KErrDcLeave=(-60); |
|
34 |
|
35 // Posible status for Policy evaluator |
|
36 #define KUpsPeStatusReset 0x0020 |
|
37 #define KUpsPeStatusStarted 0x0021 |
|
38 #define KUpsPeStatusHolding 0x0022 |
|
39 #define KUpsPeStatusCompleted 0x0023 |
|
40 |
|
41 // status to determine that a Client has completed |
|
42 #define KUpsClientCompleted 0x0030 |
|
43 |
|
44 const TInt KErrPeLeave=(-61); |
|
45 |
|
46 // Bit mask values for buttons to be displayed by dialog creator. |
|
47 #define KYes 0x0001 |
|
48 #define KNo 0x0002 |
|
49 #define KSessionYes 0x0004 |
|
50 #define KAlways 0x0008 |
|
51 #define KNever 0x0010 |
|
52 #define KSessionNo 0x0020 |
|
53 #define KNone 0x0000 |
|
54 |
|
55 |
|
56 // For test step panics |
|
57 _LIT(K_TUPSSuitePanic,"TUPSSuite"); |
|
58 |
|
59 #endif |