diff options
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -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 |