/* * common.h: 'EnigmaNG' skin for the Video Disk Recorder * * See the README file for copyright information and how to reach the author. * */ #ifndef __SKINENIGMA_COMMON_H #define __SKINENIGMA_COMMON_H #include #include #include #ifdef DEBUG #define debug(x...) dsyslog("EnigmaNG: " x); #define error(x...) esyslog("EnigmaNG: " x); //#define debug(x...) { printf("EnigmaNG: " x); printf("\n"); } //#define error(x...) { fprintf(stderr, "EnigmaNG: " x); fprintf(stderr, "\n"); } #else #define debug(x...) ; #define error(x...) esyslog("EnigmaNG: " x); #endif #endif // __SKINENIGMA_COMMON_H // vim:et:sw=2:ts=2: