1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/security/authorisation/userpromptservice/test/include/tupsintegdefs.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,59 @@
1.4 +/*
1.5 +* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of the License "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +/**
1.23 + @file
1.24 + @test
1.25 +*/
1.26 +
1.27 +#if (!defined TUPS_SUITEDEFS_H)
1.28 +#define TUPS_SUITEDEFS_H
1.29 +
1.30 +// Posible status for Dialog creator
1.31 +#define KUpsDcStatusReset 0x0010
1.32 +#define KUpsDcStatusStarted 0x0011
1.33 +#define KUpsDcStatusPrepareHold 0x0012
1.34 +#define KUpsDcStatusDisplayHold 0x0013
1.35 +#define KUpsDcStatusCompleted 0x0014
1.36 +const TInt KErrDcLeave=(-60);
1.37 +
1.38 +// Posible status for Policy evaluator
1.39 +#define KUpsPeStatusReset 0x0020
1.40 +#define KUpsPeStatusStarted 0x0021
1.41 +#define KUpsPeStatusHolding 0x0022
1.42 +#define KUpsPeStatusCompleted 0x0023
1.43 +
1.44 +// status to determine that a Client has completed
1.45 +#define KUpsClientCompleted 0x0030
1.46 +
1.47 +const TInt KErrPeLeave=(-61);
1.48 +
1.49 +// Bit mask values for buttons to be displayed by dialog creator.
1.50 +#define KYes 0x0001
1.51 +#define KNo 0x0002
1.52 +#define KSessionYes 0x0004
1.53 +#define KAlways 0x0008
1.54 +#define KNever 0x0010
1.55 +#define KSessionNo 0x0020
1.56 +#define KNone 0x0000
1.57 +
1.58 +
1.59 +// For test step panics
1.60 +_LIT(K_TUPSSuitePanic,"TUPSSuite");
1.61 +
1.62 +#endif