/* * AdvChCtrl plugin for VDR * * Copyright (C) 2002 * * This code is distributed under the terms and conditions of the * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details. * */ #ifndef __ADVCHCTRLCOMMON_H #define __ADVCHCTRLCOMMON_H // #define VOLCTRLDEBUG #define SVDRPCTRLDEBUG #define OSDCTRLDEBUG #ifdef VOLCTRLDEBUG #define DEBUGVOL(format, args...) dsyslog (format, ## args) #else #define DEBUGVOL(format, args...) #endif #ifdef SVDRPCTRLDEBUG #define DEBUGSVDRP(format, args...) dsyslog (format, ## args) #else #define DEBUGSVDRP(format, args...) #endif #ifdef OSDCTRLDEBUG #define DEBUGOSD(format, args...) dsyslog (format, ## args) #else #define DEBUGOSD(format, args...) #endif #endif // __ADVCHCTRLCOMMON_H