From 74cdd9ffa1d0e5f74942051e7e22e07542929c03 Mon Sep 17 00:00:00 2001 From: Jochen Dolze Date: Tue, 30 Mar 2010 18:49:58 +0200 Subject: Changed directory structure, added Makefiles --- plugin/status.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 plugin/status.h (limited to 'plugin/status.h') diff --git a/plugin/status.h b/plugin/status.h new file mode 100644 index 0000000..fbdd7c7 --- /dev/null +++ b/plugin/status.h @@ -0,0 +1,30 @@ +/* + * status.h: A plugin for the Video Disk Recorder + * + * See the README file for copyright information and how to reach the author. + * + */ +#ifndef __status_h_ +#define __status_h_ + +#include + +#define UNUSED(v) UNUSED_ ## v __attribute__((unused)) + +// --- cStatusMarkAd +class cStatusMarkAd : public cStatus +{ +private: + char *recs[MAXDEVICES*MAXRECEIVERS]; + const char *bindir; + const char *logodir; + void Add(const char *FileName); +protected: + virtual void Recording(const cDevice *Device, const char *Name, const char *FileName, bool On); +public: + cStatusMarkAd(const char *BinDir,const char *LogoDir); + ~cStatusMarkAd(); + bool MarkAdRunning(void); +}; + +#endif -- cgit v1.2.3