sl@0: // Copyright (c) 2008-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 "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: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #ifndef __T_WSERV_GENERICPLUGIN_CONSTS_H__ sl@0: #define __T_WSERV_GENERICPLUGIN_CONSTS_H__ sl@0: sl@0: struct TFadingParams sl@0: { sl@0: TUint8 blackMap; sl@0: TUint8 whiteMap; sl@0: }; sl@0: sl@0: //Return value of the CheckLogL. sl@0: enum TCheckLogStatus sl@0: { sl@0: EFileNotExist = -1, sl@0: EMsgNotFound = -2, sl@0: EMsgFound = 1 sl@0: }; sl@0: sl@0: static const TUint KDelay=1000000; //1 sec sl@0: sl@0: //Default value for the width and height of the window created. sl@0: const TInt KTempWindowHeight = 200; sl@0: const TInt KTempWindowWidth = 200; sl@0: sl@0: const TUint32 KNullWsHandle = 0xFFFFFFFF; sl@0: const TUint KBadPluginUid = 0x10285fff; sl@0: const TUint KServicePluginUid = 0x10285C64; //service plugin UID sl@0: sl@0: //Name of the log file to which test plugins write message. sl@0: _LIT(KLogFileName, "c:\\graphics\\testplugin.txt"); sl@0: sl@0: //Name of the test step sl@0: _LIT(KT_WServGenericpluginStepLoad,"T_WServGenericpluginStepLoad"); sl@0: sl@0: #endif // __T_WSERV_GENERICPLUGIN_CONSTS_H__