diff --git a/harbour/ChangeLog b/harbour/ChangeLog index b5e64aa647..1fe993848d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-06-02 20:16 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * source/common/hbstr.c + ! HB_EXPORT added to hb_strRemEscSeq(). Thanks Javier. + 2008-06-02 20:11 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/compiler/ppcomp.c * harbour/source/compiler/cmdcheck.c diff --git a/harbour/source/common/hbstr.c b/harbour/source/common/hbstr.c index 33063382ae..464023bf18 100644 --- a/harbour/source/common/hbstr.c +++ b/harbour/source/common/hbstr.c @@ -923,7 +923,7 @@ HB_EXPORT char * hb_strncpyTrim( char * pDest, const char * pSource, ULONG ulLen return pBuf; } -char * hb_strRemEscSeq( char *str, ULONG *pLen ) +HB_EXPORT char * hb_strRemEscSeq( char *str, ULONG *pLen ) { ULONG ul = *pLen, ulStripped = 0; char *ptr, *dst, ch;