--- np2/win9x/trace.h 2004/02/12 17:18:16 1.2 +++ np2/win9x/trace.h 2005/02/15 18:42:20 1.4 @@ -5,6 +5,7 @@ #define TRACETERM() #define TRACEOUT(a) #define VERBOSE(a) +#define APPDEVOUT(a) #else @@ -15,6 +16,9 @@ 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_char(char c); +extern void trace_fileout(const char *fname); #ifdef __cplusplus } @@ -23,7 +27,8 @@ 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 +#define APPDEVOUT(arg) trace_char(arg) #endif