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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // common defintions for plugin and caller
21 @internalComponent - Internal Symbian coverage test code,
23 #ifndef __GDCOVCOMMON_H__
24 #define __GDCOVCOMMON_H__
26 // message header single byte signature
27 const TUint8 KGdCoverageInfoSig = 0x56;
29 // commands plugin may receive
30 const TUint8 KGdCoverageCmdQuery = 0;
31 const TUint8 KGdCoverageCmdCoverRedraw = 1;
33 // information struct returned when querying plugin
34 NONSHARABLE_STRUCT(TGdCoverageInfo)
37 // add any command information here
41 #endif // __GDCOVCOMMON_H