/[svn]/linuxsampler/trunk/src/global.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/global.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 11 by senoner, Tue Nov 11 23:30:47 2003 UTC revision 12 by schoenebeck, Sun Nov 16 19:01:50 2003 UTC
# Line 32  Line 32 
32  #include <config.h>  #include <config.h>
33  #endif  #endif
34    
35  #define LS_DEBUG        0  #define LS_DEBUG_LEVEL  1  ///< the higher this value the higher verbosity, 0 means no debug messages at all
36    
37  #if LS_DEBUG  #if LS_DEBUG_LEVEL > 0
38  #  define dmsg(x)       printf x; fflush(stdout);  #  define dmsg(debuglevel,x)    if (LS_DEBUG_LEVEL >= debuglevel) {printf x; fflush(stdout);}
39  #else  #else
40  #  define dmsg(x)  #  define dmsg(debuglevel,x)
41  #endif // LS_DEBUG  #endif // LS_DEBUG
42    
43  // defines globally the bit depth of used samples  // defines globally the bit depth of used samples

Legend:
Removed from v.11  
changed lines
  Added in v.12

  ViewVC Help
Powered by ViewVC