| version 1.1, 2003/10/21 14:57:41 | version 1.3, 2004/06/14 13:35:40 | 
| Line 1 | Line 1 | 
 |  |  | 
 | #ifndef TRACE | #ifndef TRACE | 
 |  |  | 
 | #define TRACEINIT() | #define TRACEINIT() | 
 | #define TRACETERM() | #define TRACETERM() | 
 | #define TRACEOUT(a) | #define TRACEOUT(a) | 
| Line 9 | Line 11 | 
 | #ifdef __cplusplus | #ifdef __cplusplus | 
 | extern "C" { | extern "C" { | 
 | #endif | #endif | 
 |  |  | 
 | extern void trace_init(void); | extern void trace_init(void); | 
 | extern void trace_term(void); | extern void trace_term(void); | 
 | extern void trace_fmt(const char *str, ...); | extern void trace_fmt(const char *str, ...); | 
 |  | extern void trace_fmt2(const char *str, ...); | 
 |  | extern void trace_fileout(const char *fname); | 
 |  |  | 
 | #ifdef __cplusplus | #ifdef __cplusplus | 
 | } | } | 
 | #endif | #endif | 
| Line 19  extern void trace_fmt(const char *str, . | Line 25  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 | 
|  |  | 
 | #endif | #endif | 
 |  |  |