3 #define __DEBUG_PRINT_C
\r
4 #define __DEBUG_PRINT_FILE
\r
6 #if defined(__DEBUG_PRINT) || defined(__WINS__)
\r
7 #include <e32svr.h> // RDebug
\r
8 #ifdef __DEBUG_PRINT_FILE
\r
9 void debugPrintFile(TRefByValue<const TDesC> aFmt, ...);
\r
10 #define DEBUGPRINT debugPrintFile
\r
12 #define DEBUGPRINT RDebug::Print
\r
14 TDesC* DO_CONV(const char* s);
\r
15 #ifdef __DEBUG_PRINT_C
\r
19 void lprintf(const char *format, ...);
\r
22 #define DEBUGPRINT(x...)
\r
23 #undef __DEBUG_PRINT_C
\r
24 #undef __DEBUG_PRINT_FILE
\r
27 void ExceptionHandler(TExcType exc);
\r