--- np2/wince/w32/trace.h 2003/11/21 06:51:16 1.2 +++ np2/wince/w32/trace.h 2004/06/14 13:35:40 1.3 @@ -4,6 +4,7 @@ #define TRACEINIT() #define TRACETERM() #define TRACEOUT(a) +#define VERBOSE(a) #else @@ -14,6 +15,8 @@ extern "C" { extern void trace_init(void); extern void trace_term(void); extern void trace_fmt(const char *str, ...); +extern void trace_fmt2(const char *str, ...); +extern void trace_fileout(const char *fname); #ifdef __cplusplus } @@ -22,6 +25,7 @@ extern void trace_fmt(const char *str, . #define TRACEINIT() trace_init() #define TRACETERM() trace_term() #define TRACEOUT(arg) trace_fmt arg +#define VERBOSE(arg) trace_fmt2 arg #endif