mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
Added Apid2, Dpid1, Dpid2 information. Added option to write signal information into system log.
30 lines
484 B
C++
30 lines
484 B
C++
/*
|
|
* Frontend Status Monitor plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __FEMONCFG_H
|
|
#define __FEMONCFG_H
|
|
|
|
struct cFemonConfig
|
|
{
|
|
public:
|
|
cFemonConfig(void);
|
|
int hidemenu;
|
|
int displaymode;
|
|
int position;
|
|
int redlimit;
|
|
int greenlimit;
|
|
int updateinterval;
|
|
int showbitrate;
|
|
int calcinterval;
|
|
int syslogoutput;
|
|
};
|
|
|
|
extern cFemonConfig femonConfig;
|
|
|
|
#endif // __FEMONCFG_H
|