|
|
| version 1.2, 2004/02/12 17:18:16 | 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, ...); |
| void trace_fmt2(const char *str, ...); | |
| void trace_char(char c); | |
| void trace_fileout(const OEMCHAR *fname); | |
| #ifdef __cplusplus | #ifdef __cplusplus |
| } | } |
| Line 23 extern void trace_fmt(const char *str, . | Line 27 extern void trace_fmt(const char *str, . |
| #define TRACEINIT() trace_init() | #define TRACEINIT() trace_init() |
| #define TRACETERM() trace_term() | #define TRACETERM() trace_term() |
| #define TRACEOUT(arg) trace_fmt arg | #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 | #endif |