vdr-plugin-femon/femoncfg.h

46 lines
687 B
C
Raw Normal View History

/*
* Frontend Status Monitor plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
2004-02-15 03:20:00 +01:00
#ifndef __FEMONCFG_H
#define __FEMONCFG_H
#ifdef DEBUG
#define debug(x) (x);
#else
#define debug(x) ;
#endif
enum dispModes {
modeBasic,
modeTransponder,
modeStream,
modeAC3,
modeMaxNumber
};
2004-02-15 03:20:00 +01:00
struct cFemonConfig
{
public:
cFemonConfig(void);
int hidemenu;
int displaymode;
int position;
int redlimit;
int greenlimit;
int updateinterval;
int analyzestream;
int calcinterval;
int syslogoutput;
int showcasystem;
int osdheight;
2004-02-15 03:20:00 +01:00
};
extern cFemonConfig femonConfig;
#endif // __FEMONCFG_H