|
@@ -728,6 +728,17 @@ Begin
|
|
|
Str_real(Len,fixkomma,r,treal_type(rt),s);
|
|
|
Write_Str(Len,t,s);
|
|
|
End;
|
|
|
+
|
|
|
+
|
|
|
+Procedure fpc_Write_Text_Float_iso(rt,fixkomma,Len : Longint;var t : Text;r : ValReal); iocheck; compilerproc;
|
|
|
+var
|
|
|
+ s : String;
|
|
|
+Begin
|
|
|
+ If (InOutRes<>0) then
|
|
|
+ exit;
|
|
|
+ Str_real_iso(Len,fixkomma,r,treal_type(rt),s);
|
|
|
+ Write_Str(Len,t,s);
|
|
|
+End;
|
|
|
{$endif}
|
|
|
|
|
|
procedure fpc_write_text_enum(typinfo,ord2strindex:pointer;len:sizeint;var t:text;ordinal:longint); iocheck; compilerproc;
|