From: Jorge G. <cl...@us...> - 2007-12-24 01:09:03
|
Update of /cvsroot/easycalc/easycalc/include In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv8587/include Modified Files: konvert.h Log Message: debugged and simplified _item functions. LitemType removed Index: konvert.h =================================================================== RCS file: /cvsroot/easycalc/easycalc/include/konvert.h,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** konvert.h 1 Oct 2006 22:43:36 -0000 1.22 --- konvert.h 24 Dec 2007 01:08:59 -0000 1.23 *************** *** 60,64 **** list, matrix, - litem, cmatrix }rpntype; --- 60,63 ---- *************** *** 109,118 **** typedef struct { - Int16 row; - Int16 col; - char name[MAX_FUNCNAME+1]; - }LitemType; - - typedef struct { UInt16 size; Complex item[0]; --- 108,111 ---- *************** *** 139,143 **** Functype funcval; /* Internal function call */ TextFunctype textfunc; /* User defined function call */ - LitemType litemval; char funcname[MAX_FUNCNAME+1]; /* Empty function */ char varname[MAX_FUNCNAME+1]; --- 132,135 ---- |