Difference between revisions of "Mode Delphi"

From Lazarus wiki
Jump to navigationJump to search
(add link to user’s guide)
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
{{Mode Delphi}}
 
{{Mode Delphi}}
  
This [[Compiler Mode|mode]] is provided for compatibility with the [[Delphi]] [[Compiler|compiler]] from Embarcadero in order to simplify porting of existing code to [[FPC|Free Pascal]]. You enable it with mode switch '''${mode Delphi}''' in [[Source code|source code]] or with the compiler [[Command line parameters and environment variables|command line option]] '''-Mdelphi'''.
+
This [[Compiler Mode|mode]] is provided for compatibility with the [[Delphi]] [[Compiler|compiler]] from Embarcadero in order to simplify porting of existing code to [[FPC|Free Pascal]]. You enable it with mode switch <syntaxhighlight lang="pascal" enclose="none">{$mode Delphi}</syntaxhighlight> in [[Source code|source code]] or with the compiler [[Command line parameters and environment variables|command line option]] '''-Mdelphi'''.
  
== see also ==
+
== See also ==
 
* [[FPC New Features 3.0#New delphiunicode syntax mode|<syntaxhighlight lang="pascal" enclose="none">{$mode DelphiUnicode}</syntaxhighlight>]]
 
* [[FPC New Features 3.0#New delphiunicode syntax mode|<syntaxhighlight lang="pascal" enclose="none">{$mode DelphiUnicode}</syntaxhighlight>]]
 
* [https://www.freepascal.org/docs-html/user/usersu88.html sub-§ “Delphi compatibility mode” in the ''Free Pascal user’s guide'']
 
* [https://www.freepascal.org/docs-html/user/usersu88.html sub-§ “Delphi compatibility mode” in the ''Free Pascal user’s guide'']

Revision as of 09:23, 21 January 2022

English (en) español (es) français (fr) português (pt) русский (ru)

This mode is provided for compatibility with the Delphi compiler from Embarcadero in order to simplify porting of existing code to Free Pascal. You enable it with mode switch {$mode Delphi} in source code or with the compiler command line option -Mdelphi.

See also