sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* MACROS
|
sl@0
|
16 |
* DEFINES
|
sl@0
|
17 |
*
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifdef _DEBUG // Debug build
|
sl@0
|
23 |
#define COMMON_RDEBUG(X) RDebug::Print(X)
|
sl@0
|
24 |
#define COMMON_RDEBUG_INT(X,Y) RDebug::Print(X,Y)
|
sl@0
|
25 |
|
sl@0
|
26 |
#else // hw environment
|
sl@0
|
27 |
#define COMMON_RDEBUG(X)
|
sl@0
|
28 |
#define COMMON_RDEBUG_INT(X,Y)
|
sl@0
|
29 |
|
sl@0
|
30 |
#endif
|
sl@0
|
31 |
|
sl@0
|
32 |
//
|
sl@0
|
33 |
// Use "macro _RD_COMMONENGINE_DETAILED_TRACE"" in commonengine.mmp file
|
sl@0
|
34 |
// to enable detailed trace of Commonengine.
|
sl@0
|
35 |
//
|
sl@0
|
36 |
#ifdef _RD_COMMONENGINE_DETAILED_TRACE // Debug environment
|
sl@0
|
37 |
#define COMMONENGINE_RDEBUG(X) RDebug::Print(X)
|
sl@0
|
38 |
#define COMMONENGINE_RDEBUG_SUBSTITUTE(X) RDebug::Print(_L("%S"), &X)
|
sl@0
|
39 |
#define COMMONENGINE_RDEBUG_INT(X,Y) RDebug::Print(X,Y)
|
sl@0
|
40 |
#define COMMONENGINE_RDEBUG_INT2(X,Y,Z) RDebug::Print(X,Y,Z)
|
sl@0
|
41 |
#define COMMONENGINE_RDEBUG_INT3(X,Y,Z,Q) RDebug::Print(X,Y,Z,Q)
|
sl@0
|
42 |
#define COMMONENGINE_RDEBUG_INT4(X,Y,Z,Q,W) RDebug::Print(X,Y,Z,Q,W)
|
sl@0
|
43 |
|
sl@0
|
44 |
#else // hw environment
|
sl@0
|
45 |
#define COMMONENGINE_RDEBUG(X)
|
sl@0
|
46 |
#define COMMONENGINE_RDEBUG_SUBSTITUTE(X)
|
sl@0
|
47 |
#define COMMONENGINE_RDEBUG_INT(X,Y)
|
sl@0
|
48 |
#define COMMONENGINE_RDEBUG_INT2(X,Y,Z)
|
sl@0
|
49 |
#define COMMONENGINE_RDEBUG_INT3(X,Y,Z,Q)
|
sl@0
|
50 |
#define COMMONENGINE_RDEBUG_INT4(X,Y,Z,Q,W)
|
sl@0
|
51 |
|
sl@0
|
52 |
#endif
|
sl@0
|
53 |
|
sl@0
|
54 |
//
|
sl@0
|
55 |
// Use "macro _RD_FEATMGR_DETAILED_TRACE" in featmgr.mmp file
|
sl@0
|
56 |
// to enable detailed trace of FeatureManager.
|
sl@0
|
57 |
//
|
sl@0
|
58 |
#ifdef _RD_FEATMGR_DETAILED_TRACE // Debug build
|
sl@0
|
59 |
#define FEATMGR_RDEBUG(X) RDebug::Print(X)
|
sl@0
|
60 |
#define FEATMGR_RDEBUG_INT(X,Y) RDebug::Print(X,Y)
|
sl@0
|
61 |
|
sl@0
|
62 |
#else // hw environment
|
sl@0
|
63 |
#define FEATMGR_RDEBUG(X)
|
sl@0
|
64 |
#define FEATMGR_RDEBUG_INT(X,Y)
|
sl@0
|
65 |
|
sl@0
|
66 |
#endif
|
sl@0
|
67 |
|
sl@0
|
68 |
|
sl@0
|
69 |
|
sl@0
|
70 |
// End of File
|