--- np2/wince/w32/trace.h 2003/10/21 14:57:41 1.1 +++ np2/wince/w32/trace.h 2004/06/14 13:35:40 1.3 @@ -1,4 +1,6 @@ + #ifndef TRACE + #define TRACEINIT() #define TRACETERM() #define TRACEOUT(a) @@ -9,9 +11,13 @@ #ifdef __cplusplus extern "C" { #endif + 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 } #endif @@ -19,5 +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_fmt arg +#define VERBOSE(arg) trace_fmt2 arg + #endif +