2004-03-03 04:20:00 +02:00
|
|
|
/*
|
|
|
|
* 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 04:20:00 +02:00
|
|
|
#ifndef __FEMONCFG_H
|
|
|
|
#define __FEMONCFG_H
|
|
|
|
|
2004-05-31 04:20:00 +03:00
|
|
|
enum dispModes {
|
|
|
|
modeBasic,
|
|
|
|
modeTransponder,
|
|
|
|
modeStream,
|
|
|
|
modeMaxNumber
|
|
|
|
};
|
|
|
|
|
2004-02-15 04:20:00 +02:00
|
|
|
struct cFemonConfig
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cFemonConfig(void);
|
2004-03-07 04:20:00 +02:00
|
|
|
int hidemenu;
|
|
|
|
int displaymode;
|
|
|
|
int position;
|
|
|
|
int redlimit;
|
|
|
|
int greenlimit;
|
|
|
|
int updateinterval;
|
2004-05-31 04:20:00 +03:00
|
|
|
int analyzestream;
|
2004-03-07 04:20:00 +02:00
|
|
|
int calcinterval;
|
|
|
|
int syslogoutput;
|
2004-02-15 04:20:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern cFemonConfig femonConfig;
|
|
|
|
|
|
|
|
#endif // __FEMONCFG_H
|