sl@0: /* sl@0: * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: */ sl@0: sl@0: #if (!defined TUPS_SUITEDEFS_H) sl@0: #define TUPS_SUITEDEFS_H sl@0: sl@0: // Posible status for Dialog creator sl@0: #define KUpsDcStatusReset 0x0010 sl@0: #define KUpsDcStatusStarted 0x0011 sl@0: #define KUpsDcStatusPrepareHold 0x0012 sl@0: #define KUpsDcStatusDisplayHold 0x0013 sl@0: #define KUpsDcStatusCompleted 0x0014 sl@0: const TInt KErrDcLeave=(-60); sl@0: sl@0: // Posible status for Policy evaluator sl@0: #define KUpsPeStatusReset 0x0020 sl@0: #define KUpsPeStatusStarted 0x0021 sl@0: #define KUpsPeStatusHolding 0x0022 sl@0: #define KUpsPeStatusCompleted 0x0023 sl@0: sl@0: // status to determine that a Client has completed sl@0: #define KUpsClientCompleted 0x0030 sl@0: sl@0: const TInt KErrPeLeave=(-61); sl@0: sl@0: // Bit mask values for buttons to be displayed by dialog creator. sl@0: #define KYes 0x0001 sl@0: #define KNo 0x0002 sl@0: #define KSessionYes 0x0004 sl@0: #define KAlways 0x0008 sl@0: #define KNever 0x0010 sl@0: #define KSessionNo 0x0020 sl@0: #define KNone 0x0000 sl@0: sl@0: sl@0: // For test step panics sl@0: _LIT(K_TUPSSuitePanic,"TUPSSuite"); sl@0: sl@0: #endif