Re: [xHarbour-developers] hb_fsize() returns incorrect results

2012-02-03 Thread Enrico Maria Giordano
-Messaggio Originale- Da: "Andi Jahja" A: Data invio: venerdì 3 febbraio 2012 5.28 Oggetto: Re: [xHarbour-developers] hb_fsize() returns incorrect results > Luis: > > Thank you for your investigation and report. > Sadly, I am still sticked to 32Bit machines thus I could not make a tes

Re: [xHarbour-developers] hb_fsize() returns incorrect results

2012-02-03 Thread Ella Stern
Hello, On Fri, Feb 3, 2012 at 5:06 AM, Luis Krause Mantilla wrote: > Andi, Enrico, Ella: > > This is a complete mystery. > > Only if I build xHarbour on an XP SP3 (32-bit) box does > hb_fsize() seem to work as expected again. > In /source/rtl/fssize.c below is the code, which I think is releva

Re: [xHarbour-developers] hb_fsize() returns incorrect results

2012-02-03 Thread luiz
Luiz I know how to fix this Regards Luiz > Hello, > > > On Fri, Feb 3, 2012 at 5:06 AM, Luis Krause Mantilla > wrote: > >> Andi, Enrico, Ella: >> >> This is a complete mystery. >> >> Only if I build xHarbour on an XP SP3 (32-bit) box does >> hb_fsize() seem to work as expected again. >> > > > In

Re: [xHarbour-developers] hb_fsize() returns incorrect results

2012-02-03 Thread luiz
Luis, which c Compiler you are using? Regards Luiz > Luis: > > Thank you for your investigation and report. > Sadly, I am still sticked to 32Bit machines thus I could not make a test > as you did. > > Andi > > On Thu, 02 Feb 2012 19:06:40 -0800 > Luis Krause Mantilla wrote: > >> Andi, Enrico, El

Re: [xHarbour-developers] hb_fsize() returns incorrect results

2012-02-03 Thread luiz
Luis This should be fixed after 2012-02-03 09:50 UTC-0300 Luiz Rafael Culik * source/rtl/fssize.c ! fixed hb_fsFSize to properly return correct file size under windows Regards Luiz > Andi, Enrico, Ella: > > This is a complete mystery. > > Only if I build xHarbour on an XP SP3 (32-bit) bo

Re: [xHarbour-developers] hb_fsize() returns incorrect results

2012-02-03 Thread Luis Krause Mantilla
Luiz: BCC 5.5.1. I'll test your fix later and let you know. Regards, On 03-02-2012 02:44, l...@xharbour.com.br wrote: > Luiz > > I know how to fix this > > Regards > Luiz > >> Hello, >> >> >> On Fri, Feb 3, 2012 at 5:06 AM, Luis Krause Mantilla >> wrote: >> >>> Andi, Enrico, Ella: >>> >>> This

Re: [xHarbour-developers] ChangeLog: 2012-01-31 10:00 UTC+0700 Andi Jahja

2012-02-03 Thread Patrick Mast
Hey Andi, I get error's compiling with VC or XCC: C:\xHarbour\source\rtl\zlib\gzio.c(510): error: Syntax error; found 'file' expecting ')'. C:\xHarbour\source\rtl\zlib\gzio.c(510): error: Syntax error; found 'file' expecting ')'. C:\xHarbour\source\rtl\zlib\gzio.c(510): error: Redeclaration of

Re: [xHarbour-developers] ChangeLog: 2012-01-31 10:00 UTC+0700 Andi Jahja

2012-02-03 Thread Andi Jahja
On Fri, 3 Feb 2012 16:33:44 +0100 Patrick Mast wrote: > Hey Andi, > > I get error's compiling with VC or XCC: > > C:\xHarbour\source\rtl\zlib\gzio.c(510): error: Syntax error; found 'file' > expecting ')'. > > > 2012-01-31 10:00 UTC+0700 Andi Jahja > > - source/rtl/zlib/gzio.c Kindly not

Re: [xHarbour-developers] ChangeLog: 2012-01-31 10:00 UTC+0700 Andi Jahja

2012-02-03 Thread Patrick Mast
Hey Andi, >> I get error's compiling with VC or XCC: >> C:\xHarbour\source\rtl\zlib\gzio.c(510): error: Syntax error; found 'file' >> expecting ')'. >> > - source/rtl/zlib/gzio.c > Kindly note that source/rtl/gzio.c does no longer exist in SVN. You are right! ;-)) I did a CLEAN build of all an

[xHarbour-developers] Subclassing DESTRUCTOR

2012-02-03 Thread Vicente Guerra
Hi! Is it possible to call a ::Super:Destructor() method? I want to extend a class, but I need to extend DESTRUCTOR too. Thanks in advance. Atte. Vic PROCEDURE MAIN LOCAL x ? "Creating object..." x := MyClass2():New() ? "Destroying..." x := nil ? "End" RETURN #include "hb