|
|
| version 1.4, 2004/03/02 16:33:27 | version 1.6, 2011/01/15 14:16:29 |
|---|---|
| Line 7 extern "C" { | Line 7 extern "C" { |
| extern int trace_flag; | extern int trace_flag; |
| void trace_init(void); | |
| void trace_term(void); | |
| void trace_fmt(const char *str, ...) G_GNUC_PRINTF(1, 2); | |
| #ifndef TRACE | #ifndef TRACE |
| #define TRACEINIT() | #define TRACEINIT() |
| Line 18 extern int trace_flag; | Line 22 extern int trace_flag; |
| #else /* TRACE */ | #else /* TRACE */ |
| void trace_init(void); | |
| void trace_term(void); | |
| 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 |