b55530493f
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1821 a95241bf-73f2-0310-859d-f6bbb57e9c96
29 lines
406 B
C
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
|
|
|