diff options
author | schmirl <schmirl> | 2007-02-19 12:08:16 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2007-02-19 12:08:16 +0000 |
commit | e86d019878a4315cc5a75450d2753c543fbe5a1a (patch) | |
tree | 843d7abc57d2254cc892ec0df81639ce967c78e5 /streamdev-server.h | |
parent | e3a44184539067ff9be18a7d1458c6c349a6245a (diff) | |
download | vdr-plugin-streamdev-e86d019878a4315cc5a75450d2753c543fbe5a1a.tar.gz vdr-plugin-streamdev-e86d019878a4315cc5a75450d2753c543fbe5a1a.tar.bz2 |
Added commandline switch -r/--remux for specifying name of externremux script (thanks to Rolf Ahrenberg)
Modified Files:
streamdev-server.c streamdev-server.h remux/extern.c
remux/extern.h
Diffstat (limited to 'streamdev-server.h')
-rw-r--r-- | streamdev-server.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/streamdev-server.h b/streamdev-server.h index 09a2c42..8149e4b 100644 --- a/streamdev-server.h +++ b/streamdev-server.h @@ -1,5 +1,5 @@ /* - * $Id: streamdev-server.h,v 1.3 2006/07/05 20:37:17 thomas Exp $ + * $Id: streamdev-server.h,v 1.4 2007/02/19 12:08:16 schmirl Exp $ */ #ifndef VDR_STREAMDEVSERVER_H @@ -19,6 +19,8 @@ public: virtual const char *Version(void) { return VERSION; } virtual const char *Description(void); + virtual const char *CommandLineHelp(void); + virtual bool ProcessArgs(int argc, char *argv[]); virtual bool Start(void); virtual void Stop(void); virtual cString Active(void); |