2001-01-08 14:35 UTC-0800 Ron Pinkas <ron@profit-master.com>
* harbour/source/vm/estack.c
* Corrected typo _HB_ITEM => HB_ITEM in type casting.
This commit is contained in:
@@ -1,12 +1,16 @@
|
||||
2001-01-08 14:35 UTC-0800 Ron Pinkas <ron@profit-master.com>
|
||||
* harbour/source/vm/estack.c
|
||||
* Corrected typo _HB_ITEM => HB_ITEM in type casting.
|
||||
|
||||
2001-01-08 22:18 GMT+0100 JFL (mafact) <jfl@mafact.com>
|
||||
* harbour/makefile.vc
|
||||
Added estack.obj
|
||||
* harbour/source/compiler/harbour.l
|
||||
Added Type Casting needed by VC++
|
||||
Added Type Casting needed by VC++
|
||||
* harbour/source/vm/estack.c
|
||||
Added Type Casting needed by VC++
|
||||
Added Type Casting needed by VC++
|
||||
* harbour/source/vm/hvm.c
|
||||
Added Type Casting needed by VC++
|
||||
Added Type Casting needed by VC++
|
||||
* harbour/source/vm/classes.c
|
||||
Temporary released the HIDDEN Check on scooping
|
||||
|
||||
|
||||
@@ -104,7 +104,7 @@ void hb_stackPush( void )
|
||||
hb_stack.pBase = hb_stack.pItems + BaseIndex;
|
||||
hb_stack.wItems += STACK_EXPANDHB_ITEMS;
|
||||
for( i=CurrIndex; i < hb_stack.wItems; ++i )
|
||||
hb_stack.pItems[ i ] = (_HB_ITEM *) hb_xgrab( sizeof( HB_ITEM ) );
|
||||
hb_stack.pItems[ i ] = (HB_ITEM *) hb_xgrab( sizeof( HB_ITEM ) );
|
||||
/* hb_stackDispLocal(); */
|
||||
}
|
||||
|
||||
@@ -125,7 +125,7 @@ void hb_stackInit( void )
|
||||
hb_stack.wItems = STACK_INITHB_ITEMS;
|
||||
|
||||
for( i=0; i < hb_stack.wItems; ++i )
|
||||
hb_stack.pItems[ i ] = (_HB_ITEM *) hb_xgrab( sizeof( HB_ITEM ) );
|
||||
hb_stack.pItems[ i ] = (HB_ITEM *) hb_xgrab( sizeof( HB_ITEM ) );
|
||||
}
|
||||
|
||||
void hb_stackRemove( LONG lUntilPos )
|
||||
|
||||
Reference in New Issue
Block a user