[fpc-devel] Windows 64bit SEH exception handling

2012-06-19 Thread tomek
SEH support. My question is, why? how is it possible that support for SEH exceptions handling fix OpenDialog issue ? or perhaps an exception is hidden ? as described in http://support.microsoft.com/kb/976038 do have you any suggestions ? Thanks, Tomek

[fpc-devel] Invalid floating point operation - roundto

2013-02-22 Thread tomek
Hi, I've problem with roundto function (fpc 2.6.0). s1,s2: extended; s1:=291.022; s2:=roundto(s1,-30); //TRoundToRange = -37..37; give me Invalid floating point operation. I see that roundto goes to single instead of extended. But why ? Thanks,

[fpc-devel] SEH with 2.6

2013-02-28 Thread tomek
Is there any chance to see the SEH support for win64 in fpc 2.6 ? Thanks, Tomek ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-devel

Re: [fpc-devel] Invalid floating point operation - roundto

2013-03-07 Thread tomek
I don't Get It. Right parameter is TRoundToRange not single,double or extended. In that case howto get roundto with extended precision ? function RoundTo(const AVAlue: Extended; const Digits: TRoundToRange): Extended; 2013/3/6 Jonas Maebe : > > On 22 Feb 2013, at 13:30, to...@ump.edu.pl wrote: >