diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-17 09:36:50 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-17 09:36:50 +0200 |
commit | 27046cf8a9f1047e39724ddb1702957f4b395f36 (patch) | |
tree | 0a4b25e04063568883f74f218c689389e8b53854 /svdrp.h | |
parent | 4716cfb5a1ebae09a8a277b8943d3a885dcf1365 (diff) | |
download | vdr-27046cf8a9f1047e39724ddb1702957f4b395f36.tar.gz vdr-27046cf8a9f1047e39724ddb1702957f4b395f36.tar.bz2 |
Implemented SVDRP command 'HITK'
Diffstat (limited to 'svdrp.h')
-rw-r--r-- | svdrp.h | 29 |
1 files changed, 15 insertions, 14 deletions
@@ -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); |