haiku/headers/private/midi/debug.h
mahlzeit b55530493f Added Doxygen file header
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1821 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-11-01 16:12:00 +00:00

29 lines
406 B
C

/**
* @file debug.h
*
* Debug macros for the Midi Kit
*
* @author Matthijs Hollemans
* @author Marcus Overhagen
*/
#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