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.
This commit is contained in:
Viktor Szakats
2010-03-11 21:23:19 +00:00
parent 2b1fc69b1c
commit 4976f50a70
2 changed files with 7 additions and 1 deletions

View File

@@ -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.

View File

@@ -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 );