summaryrefslogtreecommitdiff
path: root/svdrp.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-09-17 13:47:06 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-09-17 13:47:06 +0200
commit925780c20f09c7d0ef4a921f355a47f5e472878e (patch)
treec934c608bb59b3bda0a9cde282fcb22d8458914f /svdrp.h
parentb3c78919d5e8dcfcf8f5eb635bbb86efa98a3fa4 (diff)
downloadvdr-925780c20f09c7d0ef4a921f355a47f5e472878e.tar.gz
vdr-925780c20f09c7d0ef4a921f355a47f5e472878e.tar.bz2
Implemented overlay handling
Diffstat (limited to 'svdrp.h')
-rw-r--r--svdrp.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/svdrp.h b/svdrp.h
index 134332a0..12eb11e3 100644
--- a/svdrp.h
+++ b/svdrp.h
@@ -4,12 +4,13 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: svdrp.h 1.5 2000/09/17 10:22:49 kls Exp $
+ * $Id: svdrp.h 1.6 2000/09/17 13:22:04 kls Exp $
*/
#ifndef __SVDRP_H
#define __SVDRP_H
+#include "dvbapi.h"
#include "tools.h"
class cSocket {
@@ -29,6 +30,7 @@ class cSVDRP {
private:
cSocket socket;
cFile file;
+ CRect ovlClipRects[MAXCLIPRECTS];
void Close(void);
bool Send(const char *s, int length = -1);
void Reply(int Code, const char *fmt, ...);
@@ -46,6 +48,11 @@ private:
void CmdMOVT(const char *Option);
void CmdNEWC(const char *Option);
void CmdNEWT(const char *Option);
+ void CmdOVLF(const char *Option);
+ void CmdOVLG(const char *Option);
+ void CmdOVLC(const char *Option);
+ void CmdOVLP(const char *Option);
+ void CmdOVLO(const char *Option);
void CmdUPDT(const char *Option);
void Execute(char *Cmd);
public: