os/graphics/windowing/windowserver/test/t_genericplugin/inc/t_wservgenericpluginconsts.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #ifndef __T_WSERV_GENERICPLUGIN_CONSTS_H__
    23 #define __T_WSERV_GENERICPLUGIN_CONSTS_H__
    24 
    25 struct TFadingParams
    26     {
    27     TUint8 blackMap;
    28     TUint8 whiteMap;
    29     };
    30     
    31 //Return value of the CheckLogL.
    32 enum TCheckLogStatus
    33 		{
    34 		EFileNotExist = -1,
    35 		EMsgNotFound = -2,
    36 		EMsgFound = 1
    37 		};		
    38 
    39 static const TUint KDelay=1000000;	//1 sec
    40 
    41 //Default value for the width and height of the window created.
    42 const TInt KTempWindowHeight = 200;
    43 const TInt KTempWindowWidth = 200;
    44 
    45 const TUint32 KNullWsHandle = 0xFFFFFFFF;
    46 const TUint KBadPluginUid = 0x10285fff;
    47 const TUint KServicePluginUid = 0x10285C64; //service plugin UID
    48 
    49 //Name of the log file to which test plugins write message.
    50 _LIT(KLogFileName, "c:\\graphics\\testplugin.txt");
    51 
    52 //Name of the test step
    53 _LIT(KT_WServGenericpluginStepLoad,"T_WServGenericpluginStepLoad");
    54 
    55 #endif // __T_WSERV_GENERICPLUGIN_CONSTS_H__