From: Mapi B. <ma...@us...> - 2009-10-21 20:55:15
|
Update of /cvsroot/easycalc/PPCport/core In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv27548 Modified Files: core_globals.h Log Message: Bug fixes, dynamic language change enabled on UI. Index: core_globals.h =================================================================== RCS file: /cvsroot/easycalc/PPCport/core/core_globals.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** core_globals.h 17 Oct 2009 13:46:30 -0000 1.3 --- core_globals.h 21 Oct 2009 20:55:03 -0000 1.4 *************** *** 77,81 **** /* Annunciator codes */ /*********************/ ! #define NB_ANNUN 17 #define ANN_SHIFT 0 #define ANN_DEG 1 --- 77,81 ---- /* Annunciator codes */ /*********************/ ! #define NB_ANNUN 19 #define ANN_SHIFT 0 #define ANN_DEG 1 *************** *** 86,98 **** #define ANN_BIN 6 #define ANN_HEX 7 ! #define ANN_S1 8 ! #define ANN_S2 9 ! #define ANN_S3 10 ! #define ANN_SG 11 ! #define ANN_VAR 12 ! #define ANN_UFCT 13 ! #define ANN_CFCT 14 ! #define ANN_RESMENU 15 ! #define ANN_HSTMENU 16 /******************************/ --- 86,100 ---- #define ANN_BIN 6 #define ANN_HEX 7 ! #define ANN_SCRL 8 ! #define ANN_SCRR 9 ! #define ANN_S1 10 ! #define ANN_S2 11 ! #define ANN_S3 12 ! #define ANN_SG 13 ! #define ANN_VAR 14 ! #define ANN_UFCT 15 ! #define ANN_CFCT 16 ! #define ANN_RESMENU 17 ! #define ANN_HSTMENU 18 /******************************/ *************** *** 112,115 **** --- 114,120 ---- #define ANNVAL_S3 2 #define ANNVAL_SG 3 + #define ANNVAL_SCR_NONE 0 + #define ANNVAL_SCR_LEFT 1 + #define ANNVAL_SCR_RIGHT 2 |