diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-23 14:02:11 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-23 14:02:11 +0200 |
commit | f412897373b05ea78df93b56ab9d97c4bb522801 (patch) | |
tree | a18122202f89ca354808630a8baca079b4fbad9e /recording.h | |
parent | e1f7348922bbca20c29923035cf298bf7f49a392 (diff) | |
download | vdr-f412897373b05ea78df93b56ab9d97c4bb522801.tar.gz vdr-f412897373b05ea78df93b56ab9d97c4bb522801.tar.bz2 |
Calling the '-r' program after editing, too
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/recording.h b/recording.h index e1af3db3..d2391a90 100644 --- a/recording.h +++ b/recording.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.h 1.16 2001/09/02 11:35:56 kls Exp $ + * $Id: recording.h 1.17 2001/09/23 13:43:58 kls Exp $ */ #ifndef __RECORDING_H @@ -83,4 +83,16 @@ public: cMark *GetNext(int Position); }; +#define RUC_BEFORERECORDING "before" +#define RUC_AFTERRECORDING "after" +#define RUC_EDITEDRECORDING "edited" + +class cRecordingUserCommand { +private: + static const char *command; +public: + static void SetCommand(const char *Command) { command = Command; } + static void InvokeCommand(const char *State, const char *RecordingFileName); + }; + #endif //__RECORDING_H |