diff options
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 |