diff options
author | schmirl <schmirl> | 2008-04-07 14:40:39 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2008-04-07 14:40:39 +0000 |
commit | 89735cbd95ea82c309be3c2faf939d03cc8aa6eb (patch) | |
tree | 392a83f4d24bc84eda8b08624688877cc378ff1a /client/socket.h | |
parent | f51d6eb2dfb128a29db34b05d9b92a9633dd5b29 (diff) | |
download | vdr-plugin-streamdev-89735cbd95ea82c309be3c2faf939d03cc8aa6eb.tar.gz vdr-plugin-streamdev-89735cbd95ea82c309be3c2faf939d03cc8aa6eb.tar.bz2 |
- resurrected clients "Suspend Server" menu item as its mainmenu entry
- dropped unused code for remote timers/recordings on client side
- dropped unused files client/{assembler,menu,remote}.[hc]
- dropped unused files in libdvbmpeg (reported by tobi)
Diffstat (limited to 'client/socket.h')
-rw-r--r-- | client/socket.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/client/socket.h b/client/socket.h index 742c064..a0400e6 100644 --- a/client/socket.h +++ b/client/socket.h @@ -1,5 +1,5 @@ /* - * $Id: socket.h,v 1.5 2008/04/07 14:27:28 schmirl Exp $ + * $Id: socket.h,v 1.6 2008/04/07 14:40:40 schmirl Exp $ */ #ifndef VDR_STREAMDEV_CLIENT_CONNECTION_H @@ -13,10 +13,6 @@ #define CMD_LOCK cMutexLock CmdLock((cMutex*)&m_Mutex) -class cRemoteRecordings; -class cRemoteRecording; -class cRemoteTimers; -class cRemoteTimer; class cPES2TSRemux; class cClientSocket: public cTBSocket { @@ -53,13 +49,6 @@ public: bool SetFilter(ushort Pid, uchar Tid, uchar Mask, bool On); bool CloseDvr(void); bool SynchronizeEPG(void); - bool LoadRecordings(cRemoteRecordings &Recordings); - bool StartReplay(const char *Filename); - bool AbortReplay(void); - bool DeleteRecording(cRemoteRecording *Recording); - bool LoadTimers(cRemoteTimers &Timers); - bool SaveTimer(cRemoteTimer *Old, cRemoteTimer &New); - bool DeleteTimer(cRemoteTimer *Timer); bool SuspendServer(void); bool Quit(void); |