summaryrefslogtreecommitdiff
path: root/recording.h
diff options
context:
space:
mode:
Diffstat (limited to 'recording.h')
-rw-r--r--recording.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/recording.h b/recording.h
index e1af3db..d2391a9 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