|
From: Karsten W. <kar...@us...> - 2006-02-02 18:38:11
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6612 Modified Files: Tag: pre_int64_branch lang.h stringdefs.h Log Message: second round (minor) changes for i64 Index: lang.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/lang.h,v retrieving revision 1.8.4.1 retrieving revision 1.8.4.2 diff -C2 -d -r1.8.4.1 -r1.8.4.2 *** lang.h 31 Jan 2006 16:40:09 -0000 1.8.4.1 --- lang.h 2 Feb 2006 18:37:59 -0000 1.8.4.2 *************** *** 1055,1058 **** --- 1055,1066 ---- extern boolean setlongvalue (long, tyvaluerecord *); + #if LONGINT_LONGDATE == 1 + extern boolean setlonglongintvalue (Handle x, tyvaluerecord *val); + + extern boolean setlongdatevalue (Handle x, tyvaluerecord *val); + + extern boolean coercetolonglong (tyvaluerecord *v); + #endif + extern boolean setdatevalue (unsigned long, tyvaluerecord *); Index: stringdefs.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/stringdefs.h,v retrieving revision 1.3.6.1 retrieving revision 1.3.6.2 diff -C2 -d -r1.3.6.1 -r1.3.6.2 *** stringdefs.h 31 Jan 2006 16:40:09 -0000 1.3.6.1 --- stringdefs.h 2 Feb 2006 18:37:59 -0000 1.3.6.2 *************** *** 76,82 **** // kw - 2006-01-30 --- new types added ! #define STR_longlongtype "\x09" "64bit-int" ! #define STR_longdatetype "\x08" "longdate" ! #define STR_with "\x04" "with" --- 76,81 ---- // kw - 2006-01-30 --- new types added ! #define STR_longlong "\x09" "64bit-int" ! #define STR_longdate "\x08" "longdate" #define STR_with "\x04" "with" |