[Harbour] Multiple Definition ?

2010-05-30 Thread Bruno Luciani
It is posible that this function: filesize exists in two libraries ? files.c in LIBHBCT and xhbfs.c in LIBXHB Thanks for any help Bruno ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org http://lists.harbour-project

Re: [Harbour] Multiple Definition ?

2010-05-30 Thread Viktor Szakáts
I've checked and xhb doesn't have a FILESIZE, so it can be deleted from xhb. Viktor On 2010 May 30, at 19:30, Bruno Luciani wrote: > It is posible that this function: filesize > > exists in two libraries ? > > files.c in LIBHBCT > > and > > xhbfs.c in LIBXHB > > Thanks for any help > >

Re: [Harbour] Multiple Definition ?

2010-05-30 Thread Bruno Luciani
This is xhbfs.c #include "hbapi.h" HB_FUNC_EXTERN( HB_DIREXISTS ) ; HB_FUNC( ISDIRECTORY ) { HB_FUNC_EXEC( HB_DIREXISTS ); } HB_FUNC_EXTERN( HB_FSIZE ) ; HB_FUNC( FILESIZE ) { HB_FUNC_EXEC( HB_FSIZE ); } HB_FUNC_EXTERN( HB_DISABLEWAITLOCKS ) ; HB_FUN