--- np2/win9x/trace.h 2003/10/16 17:58:43 1.1 +++ np2/win9x/trace.h 2005/02/16 09:31:55 1.5 @@ -4,6 +4,8 @@ #define TRACEINIT() #define TRACETERM() #define TRACEOUT(a) +#define VERBOSE(a) +#define APPDEVOUT(a) #else @@ -11,9 +13,12 @@ extern "C" { #endif -extern void trace_init(void); -extern void trace_term(void); -extern void trace_fmt(const char *str, ...); +void trace_init(void); +void trace_term(void); +void trace_fmt(const char *str, ...); +void trace_fmt2(const char *str, ...); +void trace_char(char c); +void trace_fileout(const OEMCHAR *fname); #ifdef __cplusplus } @@ -22,6 +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_fmt2 arg +#define APPDEVOUT(arg) trace_char(arg) #endif