From 4976f50a704347ccc0f0551d8c4895a87d1334d1 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 11 Mar 2010 21:23:19 +0000 Subject: [PATCH] 2010-03-11 22:21 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * src/rtl/fssize.c + Using Harbour filefind API on win platforms (just like for wce) instead of using stat()/stat64() C RTL calls. --- harbour/ChangeLog | 6 ++++++ harbour/src/rtl/fssize.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 1e4aac1f1b..386d6d665d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,12 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-03-11 22:21 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * src/rtl/fssize.c + + Using Harbour filefind API on win platforms (just + like for wce) instead of using stat()/stat64() C RTL + calls. + 2010-03-11 13:20 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * contrib/gtwvg/gtwvg.c ! Fixed the HB_GTI_PALETTE protocol uniform with other GT's. diff --git a/harbour/src/rtl/fssize.c b/harbour/src/rtl/fssize.c index c51c040c2f..5c2eff3acf 100644 --- a/harbour/src/rtl/fssize.c +++ b/harbour/src/rtl/fssize.c @@ -82,7 +82,7 @@ HB_FOFFSET hb_fsFSize( const char * pszFileName, HB_BOOL bUseDirEntry ) { if( bUseDirEntry ) { -#if defined( HB_OS_WIN_CE ) +#if defined( HB_OS_WIN ) char * pszFree; PHB_FFIND ffind; pszFileName = hb_fsNameConv( pszFileName, &pszFree );