summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
authorMartin Hammerschmid <linux@home.pages.at>2002-10-06 08:54:21 +0200
committerMartin Hammerschmid <linux@home.pages.at>2002-10-06 08:54:21 +0200
commit575800cfff3962e6beb609052668586a1a8e0b75 (patch)
tree7300c9a170f266017000ff9fc84cdf6a8abce414 /setup.h
parent601b9ddb03c7ebd0a10c40aa1e88d405935fa7b6 (diff)
downloadvdr-plugin-lcdproc-575800cfff3962e6beb609052668586a1a8e0b75.tar.gz
vdr-plugin-lcdproc-575800cfff3962e6beb609052668586a1a8e0b75.tar.bz2
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/setup.h b/setup.h
new file mode 100644
index 0000000..1fbe9d6
--- /dev/null
+++ b/setup.h
@@ -0,0 +1,20 @@
+#ifndef LCD_SETUP_H
+#define LCD_SETUP_H
+
+class cLcdSetup {
+public:
+ int FullCycle;
+ int TimeCycle;
+ int VolumeKeep;
+ int Scrollwait;
+ int Scrollspeed;
+ int Charmap;
+ int AltShift;
+ int BackLight;
+public:
+ cLcdSetup(void);
+ };
+
+extern cLcdSetup LcdSetup;
+
+#endif