stc_rpncalc/qt_gui/calc_main.h

24 lines
389 B
C
Raw Normal View History

//header file for main.c for gui
#ifndef QT_GUI_CALC_MAIN_H
#define QT_GUI_CALC_MAIN_H
#include <QMutex>
extern const char KEY_MAP[20];
extern int8_t NewKeyBuf[4];
extern QMutex KeyMutex;
extern volatile uint8_t new_key_write_i;
extern volatile uint8_t new_key_read_i;
extern volatile uint8_t NewKeyEmpty;
extern uint8_t ExitCalcMain;
int calc_main(void);
#endif //include guard