haiku/headers/private/midi/debug.h
mahlzeit 1df1f3949f Checkin of the source code for midi2 kit milestone 1.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2335 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-12-31 14:25:02 +00:00

40 lines
678 B
C

/**
* @file debug.h
*
* Debug macros for the Midi Kit
*
* @author Matthijs Hollemans
*/
#ifndef MIDI_DEBUG_H
#define MIDI_DEBUG_H
#include <OS.h>
#include <stdio.h>
#define WARN(args) { fprintf(stderr, "[midi] WARNING: %s\n", args); }
#define UNIMPLEMENTED { fprintf(stderr, "[midi] UNIMPLEMENTED %s\n",__PRETTY_FUNCTION__); }
#ifdef DEBUG
#define TRACE(args) { printf("[midi] "); printf args; printf("\n"); }
#define ASSERT(expr) \
if (!(expr))\
{\
char buf[1024];\
sprintf(\
buf, "%s(%d) : Assertion \"%s\" failed!",\
__FILE__, __LINE__, #expr);\
debugger(buf);\
}\
#else
#define TRACE(args)
#define ASSERT(expr)
#endif
#endif // MIDI_DEBUG_H