equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Traces |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef PHCNTTRACE_H |
|
20 #define PHCNTTRACE_H |
|
21 |
|
22 #include <e32std.h> |
|
23 |
|
24 //#define PHCNT_TRACE |
|
25 |
|
26 #ifdef PHCNT_TRACE |
|
27 |
|
28 #pragma message("DEBUG PRINTS ON") |
|
29 |
|
30 #define PRINTF( format, data ) RDebug::Print( _L(format), data ); |
|
31 #define PRINT( format ) RDebug::RawPrint( _L(format) ); |
|
32 |
|
33 #else |
|
34 |
|
35 #define PRINTF( format, data ) |
|
36 #define PRINT( format ) |
|
37 |
|
38 #endif // PHCNT_TRACE |
|
39 |
|
40 #endif // PHCNTTRACE_H |