windowing/windowserver/test/t_gdcoverage/gdcovcommon.h
changeset 0 5d03bc08d59c
equal deleted inserted replaced
-1:000000000000 0:5d03bc08d59c
       
     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 // common defintions for plugin and caller
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @test
       
    21  @internalComponent - Internal Symbian coverage test code, 
       
    22 */
       
    23 #ifndef __GDCOVCOMMON_H__
       
    24 #define __GDCOVCOMMON_H__
       
    25 
       
    26 // message header single byte signature
       
    27 const TUint8 KGdCoverageInfoSig = 0x56;
       
    28 
       
    29 // commands plugin may receive
       
    30 const TUint8 KGdCoverageCmdQuery = 0;
       
    31 const TUint8 KGdCoverageCmdCoverRedraw = 1;
       
    32 
       
    33 // information struct returned when querying plugin
       
    34 NONSHARABLE_STRUCT(TGdCoverageInfo)
       
    35 	{
       
    36 	TUint8 iSignature;
       
    37 	// add any command information here
       
    38 	TUint8 iNumTests;
       
    39 	};
       
    40 
       
    41 #endif // __GDCOVCOMMON_H
       
    42