summaryrefslogtreecommitdiff
path: root/svdrp.h
diff options
context:
space:
mode:
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: