|
From: Karsten W. <kar...@us...> - 2006-03-19 10:49:42
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7877 Modified Files: Tag: pre_int64_branch frontierdefs.h ops.h strings.h Log Message: longlonginttostring - longlongs can be displayed Index: strings.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/strings.h,v retrieving revision 1.6 retrieving revision 1.6.6.1 diff -C2 -d -r1.6 -r1.6.6.1 *** strings.h 11 Jan 2005 22:48:02 -0000 1.6 --- strings.h 19 Mar 2006 10:49:37 -0000 1.6.6.1 *************** *** 247,250 **** --- 247,253 ---- extern boolean pullstringsuffix (bigstring, bigstring, unsigned char); /*7.0.2b1 Radio PBS*/ + #if LONGINT_LONGDATE == 1 + extern boolean stringreverse (bigstring bs); + #endif extern void initstrings (void); Index: ops.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/ops.h,v retrieving revision 1.6 retrieving revision 1.6.6.1 diff -C2 -d -r1.6 -r1.6.6.1 *** ops.h 11 Jan 2005 22:48:02 -0000 1.6 --- ops.h 19 Mar 2006 10:49:37 -0000 1.6.6.1 *************** *** 26,31 **** --- 26,37 ---- ******************************************************************************/ + + #ifndef opsinclude + #define opsinclude + #ifndef langinclude + #include "lang.h" + #endif /*typedefs*/ *************** *** 65,68 **** --- 71,78 ---- extern boolean stringtoshort (bigstring, short *); + #if LONGINT_LONGDATE == 1 + extern boolean longlonginttostring(tylonglongint theInt, bigstring bs, int radix); + #endif + extern boolean stringtonumber (bigstring, long *); *************** *** 111,113 **** extern void getsizestring (unsigned long, bigstring); ! extern unsigned long bcdtolong (unsigned long); /* 2004-11-16 creedon */ \ No newline at end of file --- 121,125 ---- extern void getsizestring (unsigned long, bigstring); ! extern unsigned long bcdtolong (unsigned long); /* 2004-11-16 creedon */ ! ! #endif \ No newline at end of file Index: frontierdefs.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/frontierdefs.h,v retrieving revision 1.7.6.3 retrieving revision 1.7.6.4 diff -C2 -d -r1.7.6.3 -r1.7.6.4 *** frontierdefs.h 10 Mar 2006 22:26:58 -0000 1.7.6.3 --- frontierdefs.h 19 Mar 2006 10:49:37 -0000 1.7.6.4 *************** *** 87,92 **** #define AEDISPOSAL 1 ! // kw - 2006-02-15 --- oplanglist accelerator ! #define OPLANGLISTACCEL 0 --- 87,92 ---- #define AEDISPOSAL 1 ! // kw - 2006-02-15 --- oplanglist accelerator - set to 1 to turn on ! #define OPLANGLISTACCEL 1 |