1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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