Debug macros for the Midi Kit. Somewhat
stolen from the Media Kit's debug.h ;-) git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1802 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
|
||||
#ifndef MIDI_DEBUG_H
|
||||
#define MIDI_DEBUG_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#ifndef NDEBUG
|
||||
|
||||
#define TRACE(args) { printf args; }
|
||||
#define UNIMPLEMENTED TRACE(("[midi] UNIMPLEMENTED %s\n",__PRETTY_FUNCTION__))
|
||||
|
||||
#else
|
||||
|
||||
#define TRACE(args)
|
||||
#define UNIMPLEMENTED
|
||||
|
||||
#endif
|
||||
|
||||
#endif // MIDI_DEBUG_H
|
||||
|
||||
Reference in New Issue
Block a user