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: // common defintions for plugin and caller sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian coverage test code, sl@0: */ sl@0: #ifndef __GDCOVCOMMON_H__ sl@0: #define __GDCOVCOMMON_H__ sl@0: sl@0: // message header single byte signature sl@0: const TUint8 KGdCoverageInfoSig = 0x56; sl@0: sl@0: // commands plugin may receive sl@0: const TUint8 KGdCoverageCmdQuery = 0; sl@0: const TUint8 KGdCoverageCmdCoverRedraw = 1; sl@0: sl@0: // information struct returned when querying plugin sl@0: NONSHARABLE_STRUCT(TGdCoverageInfo) sl@0: { sl@0: TUint8 iSignature; sl@0: // add any command information here sl@0: TUint8 iNumTests; sl@0: }; sl@0: sl@0: #endif // __GDCOVCOMMON_H sl@0: