diff options
author | Martin Hammerschmid <linux@home.pages.at> | 2002-11-23 11:25:54 +0100 |
---|---|---|
committer | Martin Hammerschmid <linux@home.pages.at> | 2002-11-23 11:25:54 +0100 |
commit | d4acf91a5ebc13da557af6a5388b9502df86148b (patch) | |
tree | 463a81d4c8b8ff0525bf7850e960d6f4d4d2c1e1 /setup.h | |
parent | 575800cfff3962e6beb609052668586a1a8e0b75 (diff) | |
download | vdr-plugin-lcdproc-d4acf91a5ebc13da557af6a5388b9502df86148b.tar.gz vdr-plugin-lcdproc-d4acf91a5ebc13da557af6a5388b9502df86148b.tar.bz2 |
Version 0.0.7v0.0.7release/v0.0.7
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,8 @@ #ifndef LCD_SETUP_H #define LCD_SETUP_H +#define LCDMAXOUTPUTS 10 + class cLcdSetup { public: int FullCycle; @@ -11,10 +13,13 @@ public: int Charmap; int AltShift; int BackLight; + int OutputNumber; + int OutputFunction[LCDMAXOUTPUTS]; public: cLcdSetup(void); }; + extern cLcdSetup LcdSetup; #endif |