3 #define __DEBUG_PRINT_C
\r
5 #if defined(__DEBUG_PRINT) || defined(__WINS__)
\r
6 #include <e32svr.h> // RDebug
\r
7 #ifdef __DEBUG_PRINT_FILE
\r
8 void debugPrintFileInit();
\r
9 void debugPrintFile(TRefByValue<const TDesC> aFmt, ...);
\r
10 #define DEBUG_PRINT_FILE_INIT debugPrintFileInit
\r
11 #define DEBUGPRINT debugPrintFile
\r
13 #define DEBUG_PRINT_FILE_INIT()
\r
14 #define DEBUGPRINT RDebug::Print
\r
16 TDesC* DO_CONV(const char* s);
\r
17 #ifdef __DEBUG_PRINT_C
\r
21 void dprintf(char *format, ...);
\r
24 #define DEBUGPRINT(x...)
\r
27 void ExceptionHandler(TExcType exc);
\r