summaryrefslogtreecommitdiff
path: root/plugin/setup.h
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2010-04-10 15:33:59 +0200
committerJochen Dolze <vdr@dolze.de>2010-04-10 15:33:59 +0200
commitb8fb66fe7f224892070debe4597b53c9beca6eb9 (patch)
treed727c1d92262606e629fdaa35c6330f86411f1f4 /plugin/setup.h
parent3b55b1b944442a26457fb92ba4147ca79e03b434 (diff)
downloadvdr-plugin-markad-b8fb66fe7f224892070debe4597b53c9beca6eb9.tar.gz
vdr-plugin-markad-b8fb66fe7f224892070debe4597b53c9beca6eb9.tar.bz2
Added more setup options, added MARK svdrp command
Diffstat (limited to 'plugin/setup.h')
-rw-r--r--plugin/setup.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/plugin/setup.h b/plugin/setup.h
index 5421457..c13c769 100644
--- a/plugin/setup.h
+++ b/plugin/setup.h
@@ -14,7 +14,10 @@ struct setup
{
bool ProcessDuring;
bool whileRecording;
- bool whilePlaying;
+ bool whileReplaying;
+ bool OSDMessage;
+ bool BackupMarks;
+ bool Verbose;
};
class cSetupMarkAd : public cMenuSetupPage
@@ -24,7 +27,10 @@ private:
struct setup *setup;
int processduring;
int whilerecording;
- int whileplaying;
+ int whilereplaying;
+ int osdmsg;
+ int backupmarks;
+ int verbose;
void write(void);
protected:
virtual void Store(void);