summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..5273220
--- /dev/null
+++ b/config.h
@@ -0,0 +1,22 @@
+/**
+ * based on config.h,v 1.1.1.1 2006/02/26 14:11:02 lordjaxom
+ *
+ * version by Midas
+ *
+ */
+
+#ifndef VDR_BLOCK_CONFIG_H
+#define VDR_BLOCK_CONFIG_H
+
+class cSetupBlock {
+public:
+ int HideMenuEntry;
+ int MessageTimeout;
+
+ cSetupBlock(void);
+ bool Parse(const char *Name, const char *Value);
+};
+
+extern cSetupBlock SetupBlock;
+
+#endif // VDR_BLOCK_CONFIG_H