summaryrefslogtreecommitdiff
path: root/svdrp.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-09-17 09:36:50 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-09-17 09:36:50 +0200
commit27046cf8a9f1047e39724ddb1702957f4b395f36 (patch)
tree0a4b25e04063568883f74f218c689389e8b53854 /svdrp.h
parent4716cfb5a1ebae09a8a277b8943d3a885dcf1365 (diff)
downloadvdr-27046cf8a9f1047e39724ddb1702957f4b395f36.tar.gz
vdr-27046cf8a9f1047e39724ddb1702957f4b395f36.tar.bz2
Implemented SVDRP command 'HITK'
Diffstat (limited to 'svdrp.h')
-rw-r--r--svdrp.h29
1 files changed, 15 insertions, 14 deletions
diff --git a/svdrp.h b/svdrp.h
index 674639e1..6c1fbb29 100644
--- a/svdrp.h
+++ b/svdrp.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: svdrp.h 1.3 2000/09/16 11:48:36 kls Exp $
+ * $Id: svdrp.h 1.4 2000/09/17 08:52:51 kls Exp $
*/
#ifndef __SVDRP_H
@@ -32,19 +32,20 @@ private:
void Close(void);
bool Send(const char *s, int length = -1);
void Reply(int Code, const char *fmt, ...);
- void CmdChan(const char *Option);
- void CmdDelc(const char *Option);
- void CmdDelt(const char *Option);
- void CmdHelp(const char *Option);
- void CmdLstc(const char *Option);
- void CmdLstt(const char *Option);
- void CmdModc(const char *Option);
- void CmdModt(const char *Option);
- void CmdMovc(const char *Option);
- void CmdMovt(const char *Option);
- void CmdNewc(const char *Option);
- void CmdNewt(const char *Option);
- void CmdUpdt(const char *Option);
+ void CmdCHAN(const char *Option);
+ void CmdDELC(const char *Option);
+ void CmdDELT(const char *Option);
+ void CmdHELP(const char *Option);
+ void CmdHITK(const char *Option);
+ void CmdLSTC(const char *Option);
+ void CmdLSTT(const char *Option);
+ void CmdMODC(const char *Option);
+ void CmdMODT(const char *Option);
+ void CmdMOVC(const char *Option);
+ void CmdMOVT(const char *Option);
+ void CmdNEWC(const char *Option);
+ void CmdNEWT(const char *Option);
+ void CmdUPDT(const char *Option);
void Execute(char *Cmd);
public:
cSVDRP(int Port);