From e76017d28c49d64e25015c5858d696ef7e51db57 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Sun, 19 Oct 2008 23:18:33 +0000 Subject: [PATCH] 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 --- harbour/ChangeLog | 4 ++++ harbour/include/hbstack.h | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6b19399791..66e96a83d8 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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 diff --git a/harbour/include/hbstack.h b/harbour/include/hbstack.h index 531e6c3550..7364de8f70 100644 --- a/harbour/include/hbstack.h +++ b/harbour/include/hbstack.h @@ -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 );