--- np2/win9x/trace.h 2004/04/08 13:08:22 1.3 +++ np2/win9x/trace.h 2005/02/16 09:31:55 1.5 @@ -5,6 +5,7 @@ #define TRACETERM() #define TRACEOUT(a) #define VERBOSE(a) +#define APPDEVOUT(a) #else @@ -12,11 +13,12 @@ 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); +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 } @@ -26,6 +28,7 @@ extern void trace_fileout(const char *fn #define TRACETERM() trace_term() #define TRACEOUT(arg) trace_fmt arg #define VERBOSE(arg) trace_fmt2 arg +#define APPDEVOUT(arg) trace_char(arg) #endif