blob: edd3afde913d452126d6445f2cc40159fbdab309 (
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
28
29
30
31
32
|
/*
* 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>
// unset HAVE_FREETYPE if VDR 1.5.3
#ifdef HAVE_FREETYPE
# if VDRVERSNUM == 10503
# undef HAVE_FREETYPE
# endif
#endif
#ifdef DEBUG
#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:
|