Przemyslaw Czerpak
8f2352f7fe
2004-12-12 02:55 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
...
+ harbour/config/hpux/dir.cf
+ harbour/config/hpux/gcc.cf
+ harbour/config/hpux/global.cf
+ harbour/config/hpux/install.cf
* Marcelo's files build files for HPUX borrowed from xHarbour
* harbour/bin/hb-func.sh
* harbour/bin/hb-mkslib.sh
* harbour/bin/postinst.sh
* recent Phil's changes for Darwin and some of mine modifications and
cleanups
* harbour/include/Makefile
+ added some missing header files
* harbour/include/hbapi.h
+ added HB_ITEM_{GET|PUT}_NUMINTRAW() macros
+ added hb_objGetClass()
* harbour/include/hbdefs.h
* redefined multi commands macros to use do {...} while(0) for safe
use in any of C statement
+ added HB_OS_HPUX
* harbour/include/hbsetup.h
+ added HB_OS_HPUX
* harbour/include/hbstack.h
* hb_stackDec(), hb_stackPop(), hb_stackPush() redefined also as macros
when HB_STACK_MACROS is set
+ added function hb_stackIncrease()
* harbour/source/common/hbstr.c
* fixed possible buffer overflow
* harbour/include/hbrdddbf.h
* harbour/source/rdd/dbf1.c
* harbour/source/rdd/workarea.c
* harbour/source/rdd/dbfcdx/dbfcdx1.c
* harbour/source/rdd/dbfdbt/dbfdbt1.c
* harbour/source/rdd/dbffpt/dbffpt1.c
* my recent fixes in xHarbour
* harbour/source/rtl/copyfile.c
* small fix to error message
* harbour/source/rtl/idle.c
+ added HB_IDLESLEEP() and
void hb_idleSleep( double dSeconds )
* harbour/source/rtl/isprint.c
* use hb_xgrab()/hb_xfree() instead of malloc()/free()
* harbour/source/rtl/run.c
* added __WATCOMC__ to C compilers supporting system()
* harbour/source/vm/arrays.c
* cleaned hb_arrayFromStack(), hb_arrayFromParams()
* harbour/source/vm/arrayshb.c
* small fixes to error messages
! improved Clipper compatibility in AFILL()
* harbour/source/vm/asort.c
* separate entry for integer items - conversion to double may
damage big 64bit numbers
* harbour/source/vm/classes.c
+ added USHORT hb_objGetClass( PHB_ITEM pItem )
* harbour/source/vm/dynsym.c
! fixed accessing to uninitialized memory
* harbour/source/vm/estack.c
+ added hb_stackIncrease() and modification for new stack macros
* harbour/source/vm/hvm.c
* fixed some error messages
* some speed improvements
* harbour/source/vm/itemapi.c
* some small optimizations
* harbour/utils/hbtest/rt_misc.prg
* modified file name conversions test results for __PLATFORM__UNIX
2004-12-12 01:56:21 +00:00
David G. Holm
861202c3ec
See ChangeLog entry 2001-06-07 11:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>
2001-06-07 15:25:54 +00:00
Ron Pinkas
06dad4687f
2001-03-22 11:00 UTC-0800 Ron Pinkas <ron@profit-master.com>
...
* hb_slex.vc
* Minor corrections.
* include/hbapi.h
+ extern PHB_ITEM hb_paramError( int iParam ); /* Returns either the generic parameter or a NIL item if param not provided */
+ extern PHB_ITEM hb_arrayFromStack( USHORT uiLen ); /* Creates and returns an Array of n Elements from the Eval Stack - Does NOT pop the items. */
+ extern PHB_ITEM hb_arrayFromParams( void ); /* Creates and returns an Array of current Generic Parameters. */
* include/hbapierr.h
* extern USHORT hb_errRT_BASE ( ULONG ulGenCode, ULONG ulSubCode, char * szDescription, char * szOperation, USHORT uiArgCount, ... );
* extern USHORT hb_errRT_BASE_Ext1 ( ULONG ulGenCode, ULONG ulSubCode, char * szDescription, char * szOperation, USHORT uiOsCode, USHORT uiFlags, USHORT uiArgCount, ... );
* extern PHB_ITEM hb_errRT_BASE_Subst ( ULONG ulGenCode, ULONG ulSubCode, char * szDescription, char * szOperation, USHORT uiArgCount, ... );
* extern void hb_errRT_BASE_SubstR ( ULONG ulGenCode, ULONG ulSubCode, char * szDescription, char * szOperation, USHORT uiArgCount, ... );
+ Added support for variable number of Error Arguments.
* source/rtl/errorapi.c
* hb_errRT_BASE ( ULONG ulGenCode, ULONG ulSubCode, char * szDescription, char * szOperation, USHORT uiArgCount, ... );
* hb_errRT_BASE_Ext1 ( ULONG ulGenCode, ULONG ulSubCode, char * szDescription, char * szOperation, USHORT uiOsCode, USHORT uiFlags, USHORT uiArgCount, ... );
* hb_errRT_BASE_Subst ( ULONG ulGenCode, ULONG ulSubCode, char * szDescription, char * szOperation, USHORT uiArgCount, ... );
* hb_errRT_BASE_SubstR ( ULONG ulGenCode, ULONG ulSubCode, char * szDescription, char * szOperation, USHORT uiArgCount, ... );
+ Added support for variable number of Error Arguments.
* source/vm/arrays.c
+ PHB_ITEM hb_arrayFromStack( USHORT uiLen )
+ PHB_ITEM hb_arrayFromParams( void )
* source/vm/extend.c
+ PHB_ITEM hb_paramError( int iParam )
* source/rdd/dbcmd.c
* Added the Error Arguments as parameters to hb_errRT_BASE*().
* source/rtl/abs.c
* source/rtl/at.c
* source/rtl/chrasc.c
* source/rtl/copyfile.c
* source/rtl/datec.c
* source/rtl/dateshb.c
* source/rtl/diskspac.c
* source/rtl/disksphb.c
* source/rtl/do.c
* source/rtl/left.c
* source/rtl/len.c
* source/rtl/math.c
* source/rtl/minmax.c
* source/rtl/mod.c
* source/rtl/philes.c
* source/rtl/philesx.c
* source/rtl/replic.c
* source/rtl/round.c
* source/rtl/set.c
* source/rtl/space.c
* source/rtl/str.c
* source/rtl/strcase.c
* source/rtl/strtran.c
* source/rtl/strzero.c
* source/rtl/substr.c
* source/rtl/transfrm.c
* source/rtl/trim.c
* source/rtl/type.c
* source/rtl/val.c
* source/rtl/word.c
* Added the Error Arguments as parameters to hb_errRT_BASE*().
* source/vm/arrayshb.c
* source/vm/eval.c
* source/vm/hvm.c
* source/vm/macro.c
* source/vm/memvars.c
* source/vm/runner.c
* Added the Error Arguments as parameters to hb_errRT_BASE*().
* source/vm/classes.c
+ Added 0 arguments (J.F. can you please decide what should be the arguments! )
/* HBTEST now reports 173 failures ( down from 376 ) many of the failures are justified.
I have tested this as much as I could, but since it invloved lots of "Cust & Pasets" more testing should be done.
It would be great if someone could review each of HBTEST Reported Failures on a one-by-one basis.
BTW, HBTEST reports 1 UN-RELEASED Memory Block (from before my changes)!
*/
2001-03-22 19:38:23 +00:00
Viktor Szakats
3e5ebf8882
20000321-12:32 GMT+1 Victor Szakats <info@szelvesz.hu>
2000-03-21 11:51:27 +00:00
Viktor Szakats
809a2d4969
20000312-03:40 GMT+1 Victor Szakats <info@szelvesz.hu>
2000-03-12 02:40:05 +00:00
Viktor Szakats
3e3819e705
20000302-11:21 GMT+1 Victor Szakats <info@szelvesz.hu>
2000-03-02 11:58:22 +00:00
Viktor Szakats
9caea442bd
19991127-20:42 GMT+1 Victor Szel <info@szelvesz.hu>
1999-11-27 19:54:58 +00:00
Viktor Szakats
44b878b566
19991116-15:05 GMT+1 Victor Szel <info@szelvesz.hu>
1999-11-16 14:18:04 +00:00
Gonzalo A. Diethelm
997d822a9c
ChangeLogTag:Thu Nov 04 13:49:23 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>
1999-11-04 17:16:23 +00:00
Gonzalo A. Diethelm
1a7088b7d4
ChangeLogTag:Thu Oct 21 11:56:55 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>
1999-10-21 15:32:32 +00:00
Viktor Szakats
37c26524cb
19990918-17:42 GMT+1
1999-09-18 16:08:05 +00:00
Viktor Szakats
225b354eb8
19990917-03:15 GMT+1
1999-09-17 02:17:30 +00:00
Viktor Szakats
5f04be73ee
19990916-21:00 GMT+1
1999-09-16 19:11:46 +00:00
Viktor Szakats
e713e45e0b
19990911-11:30 GMT+1
1999-09-11 09:54:25 +00:00
David G. Holm
76b6ca9f63
See ChangeLog entry 19990910-14:55 EDT David G. Holm <dholm@jsd-llc.com>
1999-09-10 19:10:56 +00:00
David G. Holm
a25a86222b
See ChangeLog entry 19990909-20:00 EDT David G. Holm <dholm@jsd-llc.com>
1999-09-10 00:13:22 +00:00
Viktor Szakats
a4593fa0e4
19990909-21:30 GMT+1
1999-09-09 19:50:15 +00:00
Viktor Szakats
699628f92b
19990909-16:35 GMT+1
1999-09-09 15:00:50 +00:00
Viktor Szakats
19646e1ca5
19990901-17:20 GMT+1
1999-09-01 15:43:27 +00:00
Viktor Szakats
8d3247c772
19990830-10:40 GMT+1
1999-08-30 08:53:26 +00:00
Viktor Szakats
6233f45db9
19990825-12:50 GMT+1
1999-08-25 11:05:30 +00:00
Viktor Szakats
f655b02a7a
19990822-07:40 GMT+1
1999-08-22 06:29:28 +00:00
Viktor Szakats
f73c285eb7
19990819-18:42 GMT+1
1999-08-19 17:01:23 +00:00
Viktor Szakats
83bd07376b
19990819-02:15 GMT+1
1999-08-19 00:37:54 +00:00
Viktor Szakats
f6d4ffd9ed
19990817-07:30 GMT+1
1999-08-17 05:52:08 +00:00
Viktor Szakats
169b2ab4ef
19990814-20:40 GMT+1
1999-08-14 19:12:55 +00:00
Viktor Szakats
8b3948e715
19990808-03:00 GMT+1
1999-08-08 01:23:23 +00:00
Viktor Szakats
b1695b2ddc
*** empty log message ***
1999-08-05 15:36:05 +00:00
Viktor Szakats
1ad06736f0
*** empty log message ***
1999-08-04 15:54:15 +00:00
Viktor Szakats
8615a44d6c
*** empty log message ***
1999-07-29 03:40:52 +00:00
Ryszard Glab
f67b46146b
ChangeLog 19990726-02:30
1999-07-26 00:53:50 +00:00
Andi Jahja
aea1bb8847
Added Copyright
1999-07-17 00:46:57 +00:00
Eddie Runia
53d63a62f5
See changelog
1999-07-16 13:10:10 +00:00
Ryszard Glab
12293ebe48
ChangeLog:19990630-00:25
1999-06-29 23:38:58 +00:00
Ryszard Glab
cdfdaafdd5
ChangeLog: 19990629-05:55
1999-06-29 05:07:16 +00:00
Viktor Szakats
46eca01f3e
*** empty log message ***
1999-06-27 15:48:47 +00:00
Ryszard Glab
5ad45e8a2e
ChangeLog: 19990626-13:35
1999-06-26 12:49:11 +00:00
Viktor Szakats
97ace9756d
*** empty log message ***
1999-06-25 01:42:48 +00:00
David G. Holm
d66246ebdb
See ChangeLog entry 19990624-15:15 EDT David G. Holm <dholm@jsd-llc.com>
1999-06-24 20:26:02 +00:00
Andi Jahja
227eb12bb1
revision to copyfile.c
1999-06-24 12:44:35 +00:00
David G. Holm
9ff04ce562
See ChangeLog entry 19990623-23:00 EDT David G. Holm <dholm@jsd-llc.com>
1999-06-24 04:07:25 +00:00
Andi Jahja
871315a12e
Changes in copyfile.c
1999-06-24 01:56:33 +00:00
Andi Jahja
161c3d8d0b
__copyfile() added
1999-06-23 16:32:51 +00:00