|
|
| version 1.3, 2004/04/08 13:08:22 | version 1.5, 2005/02/16 09:31:55 |
|---|---|
| Line 5 | Line 5 |
| #define TRACETERM() | #define TRACETERM() |
| #define TRACEOUT(a) | #define TRACEOUT(a) |
| #define VERBOSE(a) | #define VERBOSE(a) |
| #define APPDEVOUT(a) | |
| #else | #else |
| Line 12 | Line 13 |
| extern "C" { | extern "C" { |
| #endif | #endif |
| extern void trace_init(void); | void trace_init(void); |
| extern void trace_term(void); | void trace_term(void); |
| extern void trace_fmt(const char *str, ...); | void trace_fmt(const char *str, ...); |
| extern void trace_fmt2(const char *str, ...); | void trace_fmt2(const char *str, ...); |
| extern void trace_fileout(const char *fname); | void trace_char(char c); |
| void trace_fileout(const OEMCHAR *fname); | |
| #ifdef __cplusplus | #ifdef __cplusplus |
| } | } |
| Line 26 extern void trace_fileout(const char *fn | Line 28 extern void trace_fileout(const char *fn |
| #define TRACETERM() trace_term() | #define TRACETERM() trace_term() |
| #define TRACEOUT(arg) trace_fmt arg | #define TRACEOUT(arg) trace_fmt arg |
| #define VERBOSE(arg) trace_fmt2 arg | #define VERBOSE(arg) trace_fmt2 arg |
| #define APPDEVOUT(arg) trace_char(arg) | |
| #endif | #endif |