blob: 24472006260458341b4aaadc78bd8e65708dc8de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* 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 <string>
#include <stdio.h>
#include <vdr/config.h>
#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:
|