2008-10-20 01:18 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/include/hbstack.h
    ! added HB_EXPORT to hb_stack*() functions used in -gc3 code
This commit is contained in:
Przemyslaw Czerpak
2008-10-19 23:18:33 +00:00
parent 596c42212c
commit e76017d28c
2 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,10 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-10-20 01:18 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbstack.h
! added HB_EXPORT to hb_stack*() functions used in -gc3 code
2008-10-20 00:25 UTC+0200 Francesco Saverio Giudice (info fsgiudice com)
* contrib/hbdbgfx
* contrib/hbdbgfx/dbgfxc.c

View File

@@ -247,7 +247,7 @@ typedef struct
#endif /* _HB_API_INTERNAL_ */
extern HB_ITEM_PTR hb_stackItemFromTop( int nFromTop );
HB_EXPORT extern HB_ITEM_PTR hb_stackItemFromTop( int nFromTop );
extern HB_ITEM_PTR hb_stackItemFromBase( int nFromBase );
extern LONG hb_stackTopOffset( void );
extern LONG hb_stackBaseOffset( void );
@@ -259,8 +259,8 @@ extern HB_ITEM_PTR hb_stackReturnItem( void ); /* returns RETURN Item from stack
extern char * hb_stackDateBuffer( void );
extern void * hb_stackId( void );
HB_EXPORT extern void hb_stackPop( void ); /* pops an item from the stack */
extern void hb_stackDec( void ); /* pops an item from the stack without clearing it's contents */
extern void hb_stackPop( void ); /* pops an item from the stack */
extern void hb_stackPush( void ); /* pushes an item on to the stack */
extern HB_ITEM_PTR hb_stackAllocItem( void ); /* allocates new item on the top of stack, returns pointer to it */
extern void hb_stackPushReturn( void );