From a7eba2ff2f95f1c1bdf6a00415a81098ba4a3444 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 2 Jun 2008 18:30:05 +0000 Subject: [PATCH] 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. --- harbour/ChangeLog | 4 ++++ harbour/source/common/hbstr.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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;