From 14f0bef101d3789aeebb658bd629b38b719d7847 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 20 May 2007 11:33:09 +0000 Subject: [PATCH] 2007-05-20 13:29 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * harbour/source/rtl/hbffind.c ! Added HB_EXPORT for hb_fsFind*() functions. (missed from prev commit) --- harbour/ChangeLog | 5 +++++ harbour/source/rtl/hbffind.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 1443cd9134..cc440e7656 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +2007-05-20 13:29 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * harbour/source/rtl/hbffind.c + ! Added HB_EXPORT for hb_fsFind*() functions. + (missed from prev commit) + 2007-05-19 15:40 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbclass.ch * formatting diff --git a/harbour/source/rtl/hbffind.c b/harbour/source/rtl/hbffind.c index 00c3836e11..e32d85604a 100644 --- a/harbour/source/rtl/hbffind.c +++ b/harbour/source/rtl/hbffind.c @@ -763,7 +763,7 @@ static BOOL hb_fsFindNextLow( PHB_FFIND ffind ) return bFound; } -PHB_FFIND hb_fsFindFirst( const char * pszFileMask, USHORT attrmask ) +HB_EXPORT PHB_FFIND hb_fsFindFirst( const char * pszFileMask, USHORT attrmask ) { PHB_FFIND ffind = ( PHB_FFIND ) hb_xgrab( sizeof( HB_FFIND ) ); @@ -792,7 +792,7 @@ PHB_FFIND hb_fsFindFirst( const char * pszFileMask, USHORT attrmask ) /* Finds next matching file, and applies a filter which makes searching CA-Cl*pper/MS-DOS compatible. */ -BOOL hb_fsFindNext( PHB_FFIND ffind ) +HB_EXPORT BOOL hb_fsFindNext( PHB_FFIND ffind ) { while( hb_fsFindNextLow( ffind ) ) { @@ -810,7 +810,7 @@ BOOL hb_fsFindNext( PHB_FFIND ffind ) return FALSE; } -void hb_fsFindClose( PHB_FFIND ffind ) +HB_EXPORT void hb_fsFindClose( PHB_FFIND ffind ) { if( ffind != NULL ) {