--- np2/win9xc/trace.h 2003/10/16 17:59:19 1.1 +++ np2/win9xc/trace.h 2004/03/07 01:23:14 1.6 @@ -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