diff options
| author | Jochen Dolze <vdr@dolze.de> | 2009-09-20 20:30:22 +0200 |
|---|---|---|
| committer | Jochen Dolze <vdr@dolze.de> | 2009-09-20 20:30:22 +0200 |
| commit | 27b768a40f33b229ee832d22f24696565b812f98 (patch) | |
| tree | d03fec9e719028d9805e143956b38180c1b5920e /status.h | |
| download | vdr-plugin-markad-27b768a40f33b229ee832d22f24696565b812f98.tar.gz vdr-plugin-markad-27b768a40f33b229ee832d22f24696565b812f98.tar.bz2 | |
First commit
Diffstat (limited to 'status.h')
| -rw-r--r-- | status.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/status.h b/status.h new file mode 100644 index 0000000..7f1dadb --- /dev/null +++ b/status.h @@ -0,0 +1,27 @@ +/* + * status.h: A plugin for the Video Disk Recorder + * + * See the README file for copyright information and how to reach the author. + * + * $Id$ + */ +#ifndef __status_h_ +#define __status_h_ + +#include <vdr/status.h> +#include "recv.h" + +// --- cStatusMarkAd +class cStatusMarkAd : public cStatus +{ +private: + cMarkAdReceiver *recv[MAXDEVICES*MAXRECEIVERS]; + int FindReceiver(const char *FileName); + int GetFreeReceiver(); +protected: + virtual void Recording(const cDevice *Device, const char *Name, const char *FileName, bool On); +public: + cStatusMarkAd(); +}; + +#endif |
