17 lines
252 B
C
17 lines
252 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
extern char version[];
|
|
extern char build_date[];
|
|
extern int Quit;
|
|
|
|
#define BLINK_ON 0x10
|
|
#define BLINK_OFF 0x11
|
|
#define BACKLIGHT_OFF 0x20
|
|
#define BACKLIGHT_ON 0x21
|
|
#define HOLD_SCREEN 0x30
|
|
#define CONTINUE 0x31
|
|
|
|
|
|
#endif
|