Jean-Francois Lefebvre
7a15d4b230
2001-05-21 07:20 UTC+1 JFL (mafact) <jfl@mafact.com>
2001-05-21 05:20:23 +00:00
Jean-Francois Lefebvre
bcf30692fc
2001-05-20 23:15 UTC+1 JFL (mafact) <jfl@mafact.com>
2001-05-20 21:19:12 +00:00
Jean-Francois Lefebvre
348e31507c
2001-05-15 20:15 UTC+1 JFL (mafact) <jfl@mafact.com>
2001-05-15 18:15:51 +00:00
Viktor Szakats
37b052fc7a
2001-05-15 15:02 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>
2001-05-15 13:02:07 +00:00
Jean-Francois Lefebvre
cb8fa099bd
2001-05-13 22:30 UTC+1 JFL (mafact) <jfl@mafact.com>
2001-05-13 20:30:28 +00:00
Jean-Francois Lefebvre
c1bc118679
2001-05-09 00:02 UTC+1 JFL (mafact) <jfl@mafact.com>
2001-05-08 22:06:38 +00:00
Ron Pinkas
ee674c5116
2001-05-02 11:05 UTC-0800 Ron Pinkas <ron@profit-master.com>
...
* include/hbapi.h
* Changed HB_NESTED_CLONED to record BaseArray instead of first item.
* Reverted declaration of hb_arrayClone to use 2nd paramater ( pClonedList ) for futute Thread Safety.
* source/vm/arrays.c
* Corrected handling of nested (shared) empty array in hb_arrayClone().
* Reverted definition of hb_arrayClone() to use 2nd parameter ( pClonedList ) for future Thread Safety.
* source/vm/arrayshb.c
* source/vm/classes.c
* source/vm/hvm.c
* Added required 2nd parameter ( NULL ) to calls to hb_arrayClone()
2001-05-02 18:36:34 +00:00
Ron Pinkas
c1188f415a
2001-04-28 02:10 UTC-0800 Ron Pinkas <ron@profit-master.com>
...
* include/hbapi.h
- Removed 2nd parameter from hb_arrayClone() declaration
* source/vm/arrays.c
- Removed 2nd parameter from definition of hb_arrayClone(), added a static s_pClonedList instead.
* source/vm/arrayshb.c
* source/vm/classes.c
* source/vm/hvm.c
- Removed 2nd parameter from calls to hb_arrayClone()
2001-04-28 21:26:43 +00:00
Ron Pinkas
11435cf83e
2001-04-17 19:30 UTC-0800 Ron Pinkas <ron@profit-master.com>
...
* include/hbapi.h
* Removed 3rd paramater from declaration of hb_arrayClone().
* source/vm/arrays.c
! Optimized and improved hb_arrayClone().
* source/vm/arrayshb.c
* source/vm/classes.c
* source/vm/hvm.c
* Changed calls to hb_arrayClone() to remove no longer needed, 3rd parameter.
2001-04-18 06:52:00 +00:00
Ron Pinkas
e21cb2b118
2001-04-17 19:30 UTC-0800 Ron Pinkas <ron@profit-master.com>
...
* include/hbapi.h
+ Added typedef struct HB_NESTED_CLONED
* Changed declaration of hb_arrayClone to hb_arrayClone( PHB_ITEM pArray, PHB_NESTED_CLONED pClonedList, BOOL *bCyclic )
* source/vm/arrays.c
! Fixed hb_arrayClone() to correctly clone any array including RELATIVE Ciclic Referncing of any level.
* source/vm/arrayshb.c
* source/vm/classes.c
* source/vm/hvm.c
* Changed calls to hb_arrayClone() to pass 2 additional NULLs as 2nd. and 3rd. parameters.
2001-04-18 02:28:39 +00:00
David G. Holm
0e07837322
See ChangeLog entry 2001-04-12 15:00 UTC-0400 David G. Holm <dholm@jsd-llc.com>
2001-04-12 18:56:30 +00:00
Ron Pinkas
9d823b9a8b
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:49:50 +00:00
Ron Pinkas
27e28f22c7
2001-03-14 04:55 UTC-0800 Ron Pinkas <ron@profit-master.com>
...
* source/vm/classes.c
! Fixed hb_param() to hb_stackItemFromBase() (posted by José F. Giménez)
2001-03-15 00:56:15 +00:00
Jean-Francois Lefebvre
b7abfe9244
2001-01-08 22:18 GMT+0100 JFL (mafact) <jfl@mafact.com>
2001-01-08 21:24:17 +00:00
Ryszard Glab
ccc567b1d0
ChangeLog 2000-12-12 21:25 UTC+0100
2000-12-12 20:22:23 +00:00
Jean-Francois Lefebvre
a8d6337d7c
2000-11-23 23:11 UTC+0100 jfl (mafact) <jfl@mafact.com>
2000-11-23 21:17:23 +00:00
Jean-Francois Lefebvre
3a0cb6d7b4
2000-11-21 23:42 UTC-0100 JFL (mafact) <jfl@mafact.com>
2000-11-21 22:48:25 +00:00
Ryszard Glab
dc01ccd135
ChangeLog 2000-11-12 15:20 UTC+0100
2000-11-12 13:10:12 +00:00
Jean-Francois Lefebvre
1529b30913
2000-11-10 22:40 UTC+0100 JFL (mafact) <jfl@mafact.com>
2000-11-10 22:36:05 +00:00
Jean-Francois Lefebvre
11ed9dc157
2000-11-06 22:43 UTC+0100 JFL (mafact) <jfl@mafact.com>
2000-11-06 21:40:12 +00:00
Jean-Francois Lefebvre
41fe9b6ac9
2000-11-05 10:00 UTC+0100 JFL (mafact) <jfl@mafact.com>
2000-11-05 16:56:35 +00:00
Jean-Francois Lefebvre
0e65b01d2e
2000-11-05 10:00 UTC+0100 JFL (mafact) <jfl@mafact.com>
2000-11-05 08:59:01 +00:00
Jean-Francois Lefebvre
f4f1bdab20
2000-10-31 20:56 GMT+1 JFL (Mafact) <jfl@mafact.com>
2000-10-31 19:52:16 +00:00
Jean-Francois Lefebvre
04c647c9b2
2000-10-03 231:45 UTC+0100 JFL <jfl@mafact.com> (2 : missing files)
2000-10-04 19:48:05 +00:00
Jean-Francois Lefebvre
31c1024063
2000-09-20 23:36 UTC+0200 JFL (mafact) <jfl@mafact.com>
2000-09-20 21:38:38 +00:00
Ryszard Glab
433ae6a7f3
ChangeLog 2000-07-28 18:15 UTC+0100
2000-07-28 16:10:49 +00:00
Jean-Francois Lefebvre
44432ddd56
2000-07-28 00:05 UTC+0200 JfL <jfl@mafact.com> & RaC <Rac@mafact.com>
2000-07-27 22:04:48 +00:00
Ryszard Glab
512345997b
ChangeLog 2000-07-25 19:00 UTC+0100
2000-07-25 17:20:21 +00:00
Viktor Szakats
f14fbd7510
2000-07-25 13:47 UTC+0100 Victor Szakats <info@szelvesz.hu>
2000-07-25 11:55:27 +00:00
Viktor Szakats
09534028e0
2000-07-25 00:23 UTC+0100 Victor Szakats <info@szelvesz.hu>
2000-07-24 22:24:25 +00:00
Viktor Szakats
d407f71aa5
2000-07-24 22:28 UTC+0100 Victor Szakats <info@szelvesz.hu>
2000-07-24 20:30:05 +00:00
Viktor Szakats
a1e6f03ea0
2000-07-24 22:12 UTC+0100 Victor Szakats <info@szelvesz.hu>
2000-07-24 20:16:31 +00:00
Jean-Francois Lefebvre
2f5cb76a3b
2000-07-18 10:25 UTC+0200 JfL <jfl@mafact.com> & RaC <Rac@mafact.com>
2000-07-18 20:48:06 +00:00
Jean-Francois Lefebvre
e37a8eb1dd
2000-07-15 01:20 UTC+0200 JfL <jfl@mafact.com> & RaC <Rac@mafact.com>
2000-07-14 23:23:17 +00:00
Ryszard Glab
24a16531ea
ChangeLog 2000-07-10 11:10 UTC+0100
2000-07-10 09:03:42 +00:00
Viktor Szakats
2c91d1385e
2000-07-04 04:05 UTC+0100 Victor Szakats <info@szelvesz.hu>
2000-07-04 02:05:28 +00:00
Ryszard Glab
8a8386d996
ChangeLog 2000-06-28 10:50 UTC+0100
2000-06-29 08:46:02 +00:00
Ryszard Glab
df9fab8ad8
ChangeLog 2000-06-27 11:10 UTC+0100
2000-06-28 09:03:55 +00:00
Ryszard Glab
94eb133666
ChangeLog 2000-06-26 19:20 UTC+0100
2000-06-27 17:15:56 +00:00
Jean-Francois Lefebvre
ef6637de4b
2000-06-23 21:11 UTC+0200 JFL & RAC <jflb@mafact.com>
2000-06-23 19:12:06 +00:00
Jean-Francois Lefebvre
0093f8b62e
2000-06-23 01:31 UTC+0200 JFL & RAC <jflb@mafact.com>
2000-06-22 23:28:27 +00:00
Viktor Szakats
1d676139ac
2000-06-16 21:28 UTC+0100 Victor Szakats <info@szelvesz.hu>
2000-06-16 19:28:03 +00:00
Viktor Szakats
0c77f8f86e
2000-06-16 18:45 UTC+0100 Victor Szakats <info@szelvesz.hu>
2000-06-16 16:42:49 +00:00
Jean-Francois Lefebvre
06fd917ea2
2000-06-14 23:23 UTC+0200 JfL&RaC <jfl@mafact.com> <rac@mafact.com>
2000-06-14 21:29:33 +00:00
Jean-Francois Lefebvre
def7c89af5
2000-06-13 22:47 UTC+0200 JfL&RaC <jfl@mafact.com> <rac@mafact.com>
...
2000-06-13 22:47 UTC+0200 JfL&RaC <jfl@mafact.com > <rac@mafact.com >
2000-06-13 20:46:32 +00:00
Jean-Francois Lefebvre
567e3b3961
2000-06-12 17:20 UTC+0200 JfL&RaC <jfl@mafact.com> <rac@mafact.com>
2000-06-12 15:23:23 +00:00
Ron Pinkas
f4a4d1f980
2000-06-07 22:50 UTC-0800 Ron Pinkas <Ron@Profit-Master.com>
...
* include/hbpp.h
* source/compiler/harbour.c
* source/pp/ppcore.c
* Modified hb_pp_SetRules() to receive 2nd parameter BOOL hb_comp_bQuiet, since ppcore is part of PP.lib which is linked
into HBRUN.exe which does not include harbour.c where hb_comp_bQuiet is defined.
* source/compiler/harbour.l
! Fixed parse error on IF [...]
* source/vm/classes.c
Posted patch provided by JF
* source/rtl/tobject.prg
Posted missing file provided by JF
2000-06-09 06:59:56 +00:00
Jean-Francois Lefebvre
17d0cd1fb7
see 2000-06-07 22:42 UTC+0200 JFl&RaC <jfl@mafact.com>,<rac@mafact.com>
...
see 2000-06-07 22:42 UTC+0200 JFl&RaC <jfl@mafact.com >,<rac@mafact.com >
see 2000-06-07 22:42 UTC+0200 JFl&RaC <jfl@mafact.com >,<rac@mafact.com >
2000-06-07 20:53:08 +00:00
Antonio Linares
bd14fd408c
2000-06-05 14:52 GMT+1
2000-06-05 12:52:06 +00:00
Maurilio Longo
b39d909ac4
20000531-22:15 GMT+2 Maurilio Longo <maurilio.longo@libero.it>
2000-05-31 20:19:07 +00:00