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:
mahlzeit
2002-10-31 08:50:49 +00:00
parent 75a7beab8f
commit e913fbc1c2
+20
View File
@@ -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