summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/setup.h b/setup.h
index 1fbe9d6..5fec4c1 100644
--- a/setup.h
+++ b/setup.h
@@ -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