Diff for /np2/x11/trace.h between versions 1.3 and 1.7

version 1.3, 2004/01/13 16:29:11 version 1.7, 2011/01/15 19:16:58
Line 1 Line 1
 #ifndef NP2_X11_TRACE_H__  #ifndef NP2_X11_TRACE_H__
 #define NP2_X11_TRACE_H__  #define NP2_X11_TRACE_H__
   
   G_BEGIN_DECLS
   
   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 10 Line 18
 #define VERBOSE(s)  #define VERBOSE(s)
 #endif  #endif
   
 #else  #else   /* TRACE */
   
 #ifdef  __cplusplus  
 extern "C" {  
 #endif  
   
 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
 #ifndef VERBOSE  #ifndef VERBOSE
 #define VERBOSE(arg)    trace_fmt arg  #define VERBOSE(arg)    if (trace_flag) trace_fmt arg
 #endif  #endif
   
 #ifdef  __cplusplus  #endif  /* !TRACE */
 };  
 #endif  
   
 #endif  G_END_DECLS
   
 #endif  /* NP2_X11_TRACE_H__ */  #endif  /* NP2_X11_TRACE_H__ */

Removed from v.1.3  
changed lines
  Added in v.1.7


RetroPC.NET-CVS <cvs@retropc.net>