You are not logged in.
Pages: 1
PDF Engine does not work under D6. SysCommon causes a run time error during initialisation. Moreover ifdef Variants make problems.
Offline
Indeed...
We just fixed several Delphi 6 compilation issues.
See http://synopse.info/fossil/info/8e4840ca83
Thanks for the feedback!
Offline
Still having problem with SysCommon and D6. Runtime errors. ? Don't know whats wrong.
Offline
TsysAnsiConvert.Engine causes an floating point error in TSynAnsiFixedWidth.Create(1252) -> Move procedure.
Offline
1252
Offline
One more Delphi 6 compilation issue:
function TJSONCustomParserCustomRecord.CustomReader(P: PUTF8Char;
var aValue; out EndOfObject: AnsiChar): PUTF8Char;
var valid: boolean;
begin
result := GetJSONCustomParserRegistration.Reader(P,aValue,valid); //<---------------------------D6: Internal error: C3890
if not valid then
result := nil;
if result=nil then
exit;
EndOfObject := result^;
if result^ in [',','}',']'] then
inc(result);
end;
[Fatal Error] SynCommons.pas(25431): Internal error: C3890
Offline
We have just circumvent Delphi 6 "Internal error: C3890" compiler limitation.
See http://synopse.info/fossil/info/ed06417866
Thanks RalfS for pointing out the faulty line!
Offline
Pages: 1