00001 #ifndef CG_UPNP_AV_DEBUG_H 00002 #define CG_UPNP_AV_DEBUG_H 00003 00004 #ifdef WITH_DEBUG_MSG 00005 #include <stdio.h> 00006 #define DEBUG(fmt, ...) fprintf(stderr, fmt, ## __VA_ARGS__) 00007 #else 00008 #define DEBUG(text, ...) 00009 #endif 00010 00011 #endif