jedi.inc
上传用户:yj_qiu
上传日期:2022-08-08
资源大小:23636k
文件大小:48k
源码类别:

游戏引擎

开发平台:

Delphi

  1. {$IFNDEF JEDI_INC}
  2. {$DEFINE JEDI_INC}
  3. {**************************************************************************************************}
  4. {                                                                                                  }
  5. {  The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");}
  6. {  you may not use this file except in compliance with the License. You may obtain a copy of the   }
  7. {  License at http://www.mozilla.org/MPL/                                                          }
  8. {                                                                                                  }
  9. {  Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF  }
  10. {  ANY KIND, either express or implied. See the License for the specific language governing rights }
  11. {  and limitations under the License.                                                              }
  12. {                                                                                                  }
  13. {  The Original Code is: jedi.inc.                                                                 }
  14. {  The Initial Developer of the Original Code is Project JEDI http://www.delphi-jedi.org           }
  15. {                                                                                                  }
  16. {  Alternatively, the contents of this file may be used under the terms of the GNU Lesser General  }
  17. {  Public License (the  "LGPL License"), in which case the provisions of the LGPL License are      }
  18. {  applicable instead of those above. If you wish to allow use of your version of this file only   }
  19. {  under the terms of the LGPL License and not to allow others to use your version of this file    }
  20. {  under the MPL, indicate your decision by deleting the provisions above and replace them with    }
  21. {  the notice and other provisions required by the LGPL License. If you do not delete the          }
  22. {  provisions above, a recipient may use your version of this file under either the MPL or the     }
  23. {  LGPL License.                                                                                   }
  24. {                                                                                                  }
  25. {  For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html                    }
  26. {                                                                                                  }
  27. {**************************************************************************************************}
  28. {                                                                                                  }
  29. {  This file defines various generic compiler directives used in different libraries, e.g. in the  }
  30. {  JEDI Code Library (JCL) and JEDI Visual Component Library Library (J-VCL). The directives in    }
  31. {  this file are of generic nature and consist mostly of mappings from the VERXXX directives       }
  32. {  defined by Delphi, C++ Builder and FPC to friendly names such as DELPHI5 and                    }
  33. {  SUPPORTS_WIDESTRING. These friendly names are subsequently used in the libraries to test for    }
  34. {  compiler versions and/or whether the compiler supports certain features (such as widestrings or }
  35. {  64 bit integers. The libraries provide an additional, library specific, include file. For the   }
  36. {  JCL e.g. this is jcl.inc. These files should be included in source files instead of this file   }
  37. {  (which is pulled in automatically).                                                             }
  38. {                                                                                                  }
  39. {**************************************************************************************************}
  40. {                                                                                                  }
  41. { Last modified: $Date:: 2008-03-09 23:54:44 +0100 (dim., 09 mars 2008)                          $ }
  42. { Revision:      $Rev:: 2360                                                                     $ }
  43. { Author:        $Author:: ahuser                                                                $ }
  44. {                                                                                                  }
  45. {**************************************************************************************************}
  46. (*
  47. - Development environment directives
  48.   This file defines two directives to indicate which development environment the
  49.   library is being compiled with. Currently this can either be Delphi, Kylix,
  50.   C++ Builder or FPC.
  51.   Directive           Description
  52.   ------------------------------------------------------------------------------
  53.   DELPHI              Defined if compiled with Delphi
  54.   KYLIX               Defined if compiled with Kylix
  55.   DELPHICOMPILER      Defined if compiled with Delphi or Kylix/Delphi
  56.   BCB                 Defined if compiled with C++ Builder
  57.   CPPBUILDER          Defined if compiled with C++ Builder (alias for BCB)
  58.   BCBCOMPILER         Defined if compiled with C++ Builder or Kylix/C++
  59.   DELPHILANGUAGE      Defined if compiled with Delphi, Kylix or C++ Builder
  60.   BORLAND             Defined if compiled with Delphi, Kylix or C++ Builder
  61.   FPC                 Defined if compiled with FPC
  62. - Platform Directives
  63.   Platform directives are not all explicitly defined in this file, some are
  64.   defined by the compiler itself. They are listed here only for completeness.
  65.   Directive           Description
  66.   ------------------------------------------------------------------------------
  67.   WIN32               Defined when target platform is 32 bit Windows
  68.   WIN64               Defined when target platform is 64 bit Windows
  69.   MSWINDOWS           Defined when target platform is 32 bit Windows
  70.   LINUX               Defined when target platform is Linux
  71.   UNIX                Defined when target platform is Unix-like (including Linux)
  72.   CLR                 Defined when target platform is .NET
  73. - Architecture directives. These are auto-defined by FPC
  74.   CPU32 and CPU64 are mostly for generic pointer size dependant differences rather
  75.   than for a specific architecture.
  76.   CPU386              Defined when target platform is native x86 (win32)
  77.   CPUx86_64           Defined when target platform is native x86_64 (win64)
  78.   CPU32               Defined when target is 32-bit
  79.   CPU64               Defined when target is 64-bit
  80. - Visual library Directives
  81.   The following directives indicate for a visual library. In a Delphi/BCB
  82.   (Win32) application you need to define the VisualCLX symbol in the project
  83.   options, if  you want to use the VisualCLX library. Alternatively you can use
  84.   the IDE expert, which is distributed with the JCL to do this automatically.
  85.   Directive           Description
  86.   ------------------------------------------------------------------------------
  87.   VCL                 Defined for Delphi/BCB (Win32) exactly if VisualCLX is not defined
  88.   VisualCLX           Defined for Kylix; needs to be defined for Delphi/BCB to
  89.                       use JCL with VisualCLX applications.
  90. - Other cross-platform related defines
  91.   These symbols are intended to help in writing portable code.
  92.   Directive           Description
  93.   ------------------------------------------------------------------------------
  94.   PUREPASCAL          Code is machine-independent (as opposed to assembler code)
  95.   Win32API            Code is specific for the Win32 API;
  96.                       use instead of "{$IFNDEF CLR} {$IFDEF MSWINDOWS}" constructs
  97. - Delphi Versions
  98.   The following directives are direct mappings from the VERXXX directives to a
  99.   friendly name of the associated compiler. These directives are only defined if
  100.   the compiler is Delphi (ie DELPHI is defined).
  101.   Directive           Description
  102.   ------------------------------------------------------------------------------
  103.   DELPHI1             Defined when compiling with Delphi 1
  104.   DELPHI2             Defined when compiling with Delphi 2
  105.   DELPHI3             Defined when compiling with Delphi 3
  106.   DELPHI4             Defined when compiling with Delphi 4
  107.   DELPHI5             Defined when compiling with Delphi 5
  108.   DELPHI6             Defined when compiling with Delphi 6
  109.   DELPHI7             Defined when compiling with Delphi 7
  110.   DELPHI8             Defined when compiling with Delphi 8
  111.   DELPHI2005          Defined when compiling with Delphi 2005
  112.   DELPHI9             Alias for DELPHI2005
  113.   DELPHI10            Defined when compiling with Delphi Personality of BDS 4.0
  114.   DELPHI2006          Alias for DELPHI10
  115.   DELPHI11            Defined when compiling with Delphi for Win32 2007 
  116.   DELPHI2007          Alias for DELPHI11
  117.   DELPHI1_UP          Defined when compiling with Delphi 1 or higher
  118.   DELPHI2_UP          Defined when compiling with Delphi 2 or higher
  119.   DELPHI3_UP          Defined when compiling with Delphi 3 or higher
  120.   DELPHI4_UP          Defined when compiling with Delphi 4 or higher
  121.   DELPHI5_UP          Defined when compiling with Delphi 5 or higher
  122.   DELPHI6_UP          Defined when compiling with Delphi 6 or higher
  123.   DELPHI7_UP          Defined when compiling with Delphi 7 or higher
  124.   DELPHI8_UP          Defined when compiling with Delphi 8 or higher
  125.   DELPHI2005_UP       Defined when compiling with Delphi 2005 or higher
  126.   DELPHI9_UP          Alias for DELPHI2005_UP
  127.   DELPHI10_UP         Defined when compiling with Delphi Personality of BDS 4.0 or higher
  128.   DELPHI2006_UP       Alias for DELPHI10_UP
  129.   DELPHI11_UP         Defined when compiling with Delphi for Win32 2007 or higher
  130.   DELPHI2007_UP       Alias for DELPHI11_UP
  131. - Kylix Versions
  132.   The following directives are direct mappings from the VERXXX directives to a
  133.   friendly name of the associated compiler. These directives are only defined if
  134.   the compiler is Kylix (ie KYLIX is defined).
  135.   Directive           Description
  136.   ------------------------------------------------------------------------------
  137.   KYLIX1              Defined when compiling with Kylix 1
  138.   KYLIX2              Defined when compiling with Kylix 2
  139.   KYLIX3              Defined when compiling with Kylix 3
  140.   KYLIX1_UP           Defined when compiling with Kylix 1 or higher
  141.   KYLIX2_UP           Defined when compiling with Kylix 2 or higher
  142.   KYLIX3_UP           Defined when compiling with Kylix 3 or higher
  143. - Delphi Compiler Versions (Delphi / Kylix, not in BCB mode)
  144.   Directive           Description
  145.   ------------------------------------------------------------------------------
  146.   DELPHICOMPILER1      Defined when compiling with Delphi 1
  147.   DELPHICOMPILER2      Defined when compiling with Delphi 2
  148.   DELPHICOMPILER3      Defined when compiling with Delphi 3
  149.   DELPHICOMPILER4      Defined when compiling with Delphi 4
  150.   DELPHICOMPILER5      Defined when compiling with Delphi 5
  151.   DELPHICOMPILER6      Defined when compiling with Delphi 6 or Kylix 1, 2 or 3
  152.   DELPHICOMPILER7      Defined when compiling with Delphi 7
  153.   DELPHICOMPILER8      Defined when compiling with Delphi 8
  154.   DELPHICOMPILER9      Defined when compiling with Delphi 2005
  155.   DELPHICOMPILER10     Defined when compiling with Delphi Personality of BDS 4.0
  156.   DELPHICOMPILER11     Defined when compiling with Delphi for Win32 2007
  157.   DELPHICOMPILER1_UP   Defined when compiling with Delphi 1 or higher
  158.   DELPHICOMPILER2_UP   Defined when compiling with Delphi 2 or higher
  159.   DELPHICOMPILER3_UP   Defined when compiling with Delphi 3 or higher
  160.   DELPHICOMPILER4_UP   Defined when compiling with Delphi 4 or higher
  161.   DELPHICOMPILER5_UP   Defined when compiling with Delphi 5 or higher
  162.   DELPHICOMPILER6_UP   Defined when compiling with Delphi 6 or Kylix 1, 2 or 3 or higher
  163.   DELPHICOMPILER7_UP   Defined when compiling with Delphi 7 or higher
  164.   DELPHICOMPILER8_UP   Defined when compiling with Delphi 8 or higher
  165.   DELPHICOMPILER9_UP   Defined when compiling with Delphi 2005
  166.   DELPHICOMPILER10_UP  Defined when compiling with Delphi Personality of BDS 4.0 or higher
  167.   DELPHICOMPILER11_UP  Defined when compiling with Delphi for Win32 2007 or higher
  168. - C++ Builder Versions
  169.   The following directives are direct mappings from the VERXXX directives to a
  170.   friendly name of the associated compiler. These directives are only defined if
  171.   the compiler is C++ Builder (ie BCB is defined).
  172.   Directive    Description
  173.   ------------------------------------------------------------------------------
  174.   BCB1         Defined when compiling with C++ Builder 1
  175.   BCB3         Defined when compiling with C++ Builder 3
  176.   BCB4         Defined when compiling with C++ Builder 4
  177.   BCB5         Defined when compiling with C++ Builder 5
  178.   BCB6         Defined when compiling with C++ Builder 6
  179.   BCB10        Defined when compiling with C++ Builder Personality of BDS 4.0 (also known as C++Builder 2006)
  180.   BCB11        Defined when compiling with C++ Builder Personality of RAD Studio 2007 (also known as C++Builder 2007)
  181.   BCB1_UP      Defined when compiling with C++ Builder 1 or higher
  182.   BCB3_UP      Defined when compiling with C++ Builder 3 or higher
  183.   BCB4_UP      Defined when compiling with C++ Builder 4 or higher
  184.   BCB5_UP      Defined when compiling with C++ Builder 5 or higher
  185.   BCB6_UP      Defined when compiling with C++ Builder 6 or higher
  186.   BCB10_UP     Defined when compiling with C++ Builder Personality of BDS 4.0 or higher
  187.   BCB11_UP     Defined when compiling with C++ Builder Personality of RAD Studio 2007 or higher
  188. - Borland Developer Studio Versions
  189.   The following directives are direct mappings from the VERXXX directives to a
  190.   friendly name of the associated IDE. These directives are only defined if
  191.   the IDE is Borland Developer Studio Version 2 or above.
  192.   Note: Borland Developer Studio 2006 is marketed as Delphi 2006 or C++Builder 2006,
  193.   but those provide only different labels for identical content.
  194.   Directive    Description
  195.   ------------------------------------------------------------------------------
  196.   BDS          Defined when compiling with a Borland Developer Studio version's dcc32.exe
  197.   BDS2         Defined when compiling with BDS 2.0 (Delphi 8)
  198.   BDS3         Defined when compiling with BDS 3.0 (Delphi 2005)
  199.   BDS4         Defined when compiling with BDS 4.0 (Borland Developer Studio 2006)
  200.   BDS5         Defined when compiling with BDS 5.0 (CodeGear RAD Studio 2007)
  201.   BDS2_UP      Defined when compiling with BDS 2.0 or higher
  202.   BDS3_UP      Defined when compiling with BDS 3.0 or higher
  203.   BDS4_UP      Defined when compiling with BDS 4.0 or higher
  204.   BDS5_UP      Defined when compiling with BDS 5.0 or higher
  205. - Compiler Versions
  206.   The following directives are direct mappings from the VERXXX directives to a
  207.   friendly name of the associated compiler. Unlike the DELPHI_X and BCB_X
  208.   directives, these directives are indepedent of the development environment.
  209.   That is, they are defined regardless of whether compilation takes place using
  210.   Delphi or C++ Builder.
  211.   Directive     Description
  212.   ------------------------------------------------------------------------------
  213.   COMPILER1      Defined when compiling with Delphi 1
  214.   COMPILER2      Defined when compiling with Delphi 2 or C++ Builder 1
  215.   COMPILER3      Defined when compiling with Delphi 3
  216.   COMPILER35     Defined when compiling with C++ Builder 3
  217.   COMPILER4      Defined when compiling with Delphi 4 or C++ Builder 4
  218.   COMPILER5      Defined when compiling with Delphi 5 or C++ Builder 5
  219.   COMPILER6      Defined when compiling with Delphi 6 or C++ Builder 6
  220.   COMPILER7      Defined when compiling with Delphi 7
  221.   COMPILER8      Defined when compiling with Delphi 8
  222.   COMPILER9      Defined when compiling with Delphi 9
  223.   COMPILER10     Defined when compiling with Delphi or C++ Builder Personalities of BDS 4.0
  224.   COMPILER11     Defined when compiling with Delphi for Win32 2007
  225.   COMPILER1_UP   Defined when compiling with Delphi 1 or higher
  226.   COMPILER2_UP   Defined when compiling with Delphi 2 or C++ Builder 1 or higher
  227.   COMPILER3_UP   Defined when compiling with Delphi 3 or higher
  228.   COMPILER35_UP  Defined when compiling with C++ Builder 3 or higher
  229.   COMPILER4_UP   Defined when compiling with Delphi 4 or C++ Builder 4 or higher
  230.   COMPILER5_UP   Defined when compiling with Delphi 5 or C++ Builder 5 or higher
  231.   COMPILER6_UP   Defined when compiling with Delphi 6 or C++ Builder 6 or higher
  232.   COMPILER7_UP   Defined when compiling with Delphi 7
  233.   COMPILER8_UP   Defined when compiling with Delphi 8
  234.   COMPILER9_UP   Defined when compiling with Delphi Personalities of BDS 3.0
  235.   COMPILER10_UP  Defined when compiling with Delphi or C++ Builder Personalities of BDS 4.0 or higher
  236.   COMPILER11_UP  Defined when compiling with Delphi for Win32 2007 ir higher
  237. - RTL Versions
  238.   Use e.g. following to determine the exact RTL version since version 14.0:
  239.     {$IFDEF CONDITIONALEXPRESSIONS}
  240.       {$IF Declared(RTLVersion) and (RTLVersion >= 14.2)}
  241.         // code for Delphi 6.02 or later, Kylix 2 or later, C++ Builder 6 or later
  242.         ...
  243.       {$IFEND}
  244.     {$ENDIF}
  245.   Directive     Description
  246.   ------------------------------------------------------------------------------
  247.   RTL80_UP      Defined when compiling with Delphi 1 or later
  248.   RTL90_UP      Defined when compiling with Delphi 2 or later
  249.   RTL93_UP      Defined when compiling with C++ Builder 1 or later
  250.   RTL100_UP     Defined when compiling with Delphi 3 or later
  251.   RTL110_UP     Defined when compiling with C++ Builder 3 or later
  252.   RTL120_UP     Defined when compiling with Delphi 4 or later
  253.   RTL125_UP     Defined when compiling with C++ Builder 4 or later
  254.   RTL130_UP     Defined when compiling with Delphi 5 or C++ Builder 5 or later
  255.   RTL140_UP     Defined when compiling with Delphi 6, Kylix 1, 2 or 3 or C++ Builder 6 or later
  256.   RTL150_UP     Defined when compiling with Delphi 7 or later
  257.   RTL160_UP     Defined when compiling with Delphi 8 or later
  258.   RTL170_UP     Defined when compiling with Delphi Personalities of BDS 3.0 or later
  259.   RTL180_UP     Defined when compiling with Delphi or C++ Builder Personalities of BDS 4.0 or later
  260.   RTL185_UP     Defined when compiling with Delphi for Win32 2007 or later
  261. - CLR Versions
  262.   Directive     Description
  263.   ------------------------------------------------------------------------------
  264.   CLR            Defined when compiling for .NET
  265.   CLR10          Defined when compiling for .NET 1.0 (may be overriden by FORCE_CLR10)
  266.   CLR10_UP       Defined when compiling for .NET 1.0 or later
  267.   CLR11          Defined when compiling for .NET 1.1 (may be overriden by FORCE_CLR11)
  268.   CLR11_UP       Defined when compiling for .NET 1.1 or later
  269.   CLR20          Defined when compiling for .NET 2.0 (may be overriden by FORCE_CLR20)
  270.   CLR20_UP       Defined when compiling for .NET 2.0 or later
  271. - Feature Directives
  272.   The features directives are used to test if the compiler supports specific
  273.   features, such as method overloading, and adjust the sources accordingly. Use
  274.   of these directives is preferred over the use of the DELPHI and COMPILER
  275.   directives.
  276.   Directive              Description
  277.   ------------------------------------------------------------------------------
  278.   SUPPORTS_CONSTPARAMS          Compiler supports const parameters (D1+)
  279.   SUPPORTS_SINGLE               Compiler supports the Single type (D1+)
  280.   SUPPORTS_DOUBLE               Compiler supports the Double type (D1+)
  281.   SUPPORTS_EXTENDED             Compiler supports the Extended type (D1+)
  282.   SUPPORTS_CURRENCY             Compiler supports the Currency type (D2+)
  283.   SUPPORTS_THREADVAR            Compiler supports threadvar declarations (D2+)
  284.   SUPPORTS_OUTPARAMS            Compiler supports out parameters (D3+)
  285.   SUPPORTS_VARIANT              Compiler supports variant (D2+)
  286.   SUPPORTS_WIDECHAR             Compiler supports the WideChar type (D2+)
  287.   SUPPORTS_WIDESTRING           Compiler supports the WideString type (D3+/BCB3+)
  288.   SUPPORTS_INTERFACE            Compiler supports interfaces (D3+/BCB3+)
  289.   SUPPORTS_DISPINTERFACE        Compiler supports dispatch interfaces (D3+/BCB3+)
  290.   SUPPORTS_DISPID               Compiler supports dispatch ids (D3+/BCB3+/FPC)
  291.   SUPPORTS_EXTSYM               Compiler supports the $EXTERNALSYM directive (D4+/BCB3+)
  292.   SUPPORTS_NODEFINE             Compiler supports the $NODEFINE directive (D4+/BCB3+)
  293.   SUPPORTS_LONGWORD             Compiler supports the LongWord type (unsigned 32 bit) (D4+/BCB4+)
  294.   SUPPORTS_INT64                Compiler supports the Int64 type (D4+/BCB4+)
  295.   SUPPORTS_DYNAMICARRAYS        Compiler supports dynamic arrays (D4+/BCB4+)
  296.   SUPPORTS_DEFAULTPARAMS        Compiler supports default parameters (D4+/BCB4+)
  297.   SUPPORTS_OVERLOAD             Compiler supports overloading (D4+/BCB4+)
  298.   SUPPORTS_IMPLEMENTS           Compiler supports implements (D4+/BCB4+)
  299.   SUPPORTS_DEPRECATED           Compiler supports the deprecated directive (D6+/BCB6+)
  300.   SUPPORTS_PLATFORM             Compiler supports the platform directive (D6+/BCB6+)
  301.   SUPPORTS_LIBRARY              Compiler supports the library directive (D6+/BCB6+/FPC)
  302.   SUPPORTS_LOCAL                Compiler supports the local directive (D6+/BCB6+)
  303.   SUPPORTS_INLINE               Compiler supports the inline directive (D9+/FPC)
  304.   SUPPORTS_FOR_IN               Compiler supports for in loops (D9+)
  305.   SUPPORTS_NESTED_CONSTANTS     Compiler supports nested constants (D9+)
  306.   SUPPORTS_NESTED_TYPES         Compiler supports nested types (D9+)
  307.   SUPPORTS_ENHANCED_RECORDS     Compiler supports class [operator|function|procedure] for record types (D9.NET, D10+)
  308.   SUPPORTS_CLASS_FIELDS         Compiler supports class fields (D9.NET, D10+)
  309.   SUPPORTS_CLASS_HELPERS        Compiler supports class helpers (D9.NET, D10+)
  310.   SUPPORTS_CLASS_OPERATORS      Compiler supports class operators (D9.NET, D10+)
  311.   SUPPORTS_STRICT               Compiler supports strict keyword (D9.NET, D10+)
  312.   SUPPORTS_STATIC               Compiler supports static keyword (D9.NET, D10+)
  313.   SUPPORTS_FINAL                Compiler supports final keyword (D9.NET, D10+)
  314.   SUPPORTS_GENERICS             Compiler supports generic implementations (D11.net)
  315.   ACCEPT_DEPRECATED             Compiler supports or ignores the deprecated directive (D6+/BCB6+/FPC)
  316.   ACCEPT_PLATFORM               Compiler supports or ignores the platform directive (D6+/BCB6+/FPC)
  317.   ACCEPT_LIBRARY                Compiler supports or ignores the library directive (D6+/BCB6+)
  318.   SUPPORTS_CUSTOMVARIANTS       Compiler supports custom variants (D6+/BCB6+)
  319.   SUPPORTS_VARARGS              Compiler supports varargs (D6+/BCB6+)
  320.   SUPPORTS_ENUMVALUE            Compiler supports assigning ordinalities to values of enums (D6+/BCB6+)
  321.   SUPPORTS_DEPRECATED_WARNINGS  Compiler supports deprecated warnings (D6+/BCB6+)
  322.   SUPPORTS_LIBRARY_WARNINGS     Compiler supports library warnings (D6+/BCB6+)
  323.   SUPPORTS_PLATFORM_WARNINGS    Compiler supports platform warnings (D6+/BCB6+)
  324.   SUPPORTS_UNSAFE_WARNINGS      Compiler supports unsafe warnings (D7)
  325.   SUPPORTS_WEAKPACKAGEUNIT      Compiler supports the WEAKPACKAGEUNIT directive
  326.   SUPPORTS_COMPILETIME_MESSAGES Compiler supports the MESSAGE directive
  327.   SUPPORTS_PACKAGES             Compiler supports Packages 
  328.   HAS_UNIT_LIBC                 Unit Libc exists (Kylix, FPC on Linux/x86)
  329.   HAS_UNIT_RTLCONSTS            Unit RTLConsts exists (D6+/BCB6+/FPC)
  330.   HAS_UNIT_TYPES                Unit Types exists (D6+/BCB6+/FPC)
  331.   HAS_UNIT_VARIANTS             Unit Variants exists (D6+/BCB6+/FPC)
  332.   HAS_UNIT_STRUTILS             Unit StrUtils exists (D6+/BCB6+/FPC)
  333.   HAS_UNIT_DATEUTILS            Unit DateUtils exists (D6+/BCB6+/FPC)
  334.   HAS_UNIT_CONTNRS              Unit contnrs exists (D6+/BCB6+/FPC)
  335.   XPLATFORM_RTL                 The RTL supports crossplatform function names (e.g. RaiseLastOSError) (D6+/BCB6+/FPC)
  336.   SUPPORTS_UNICODE              Compiler supports unicode strings
  337. - Compiler Settings
  338.   The compiler settings directives indicate whether a specific compiler setting
  339.   is in effect. This facilitates changing compiler settings locally in a more
  340.   compact and readible manner.
  341.   Directive              Description
  342.   ------------------------------------------------------------------------------
  343.   ALIGN_ON               Compiling in the A+ state (no alignment)
  344.   BOOLEVAL_ON            Compiling in the B+ state (complete boolean evaluation)
  345.   ASSERTIONS_ON          Compiling in the C+ state (assertions on)
  346.   DEBUGINFO_ON           Compiling in the D+ state (debug info generation on)
  347.   IMPORTEDDATA_ON        Compiling in the G+ state (creation of imported data references)
  348.   LONGSTRINGS_ON         Compiling in the H+ state (string defined as AnsiString)
  349.   IOCHECKS_ON            Compiling in the I+ state (I/O checking enabled)
  350.   WRITEABLECONST_ON      Compiling in the J+ state (typed constants can be modified)
  351.   LOCALSYMBOLS           Compiling in the L+ state (local symbol generation)
  352.   TYPEINFO_ON            Compiling in the M+ state (RTTI generation on)
  353.   OPTIMIZATION_ON        Compiling in the O+ state (code optimization on)
  354.   OPENSTRINGS_ON         Compiling in the P+ state (variable string parameters are openstrings)
  355.   OVERFLOWCHECKS_ON      Compiling in the Q+ state (overflow checing on)
  356.   RANGECHECKS_ON         Compiling in the R+ state (range checking on)
  357.   TYPEDADDRESS_ON        Compiling in the T+ state (pointers obtained using the @ operator are typed)
  358.   SAFEDIVIDE_ON          Compiling in the U+ state (save FDIV instruction through RTL emulation)
  359.   VARSTRINGCHECKS_ON     Compiling in the V+ state (type checking of shortstrings)
  360.   STACKFRAMES_ON         Compiling in the W+ state (generation of stack frames)
  361.   EXTENDEDSYNTAX_ON      Compiling in the X+ state (Delphi extended syntax enabled)
  362. *)
  363. {$DEFINE BORLAND}
  364. { Set FreePascal to Delphi mode }
  365. {$IFDEF FPC}
  366.   {$MODE DELPHI}
  367.   {$ASMMODE Intel}
  368.   {$UNDEF BORLAND}
  369.    // FPC defines CPU* and Unix automatically
  370. {$ENDIF}
  371. {$IFDEF BORLAND}
  372.   {$IFDEF LINUX}
  373.     {$DEFINE KYLIX}
  374.   {$ENDIF LINUX}
  375.   {$IFNDEF CLR}
  376.     {$DEFINE CPU386}  // For Borland compilers select the x86 compat assembler by default
  377.     {$DEFINE CPU32}   // Assume Borland compilers are 32-bit (rather than 64-bit)
  378.   {$ENDIF ~CLR}
  379. {$ENDIF BORLAND}
  380. {------------------------------------------------------------------------------}
  381. { VERXXX to COMPILERX, DELPHIX and BCBX mappings                               }
  382. {------------------------------------------------------------------------------}
  383. {$IFDEF BORLAND}
  384.   {$IFDEF KYLIX}
  385.     {$I kylix.inc} // FPC incompatible stuff
  386.   {$ELSE ~KYLIX}
  387.     {$DEFINE UNKNOWN_COMPILER_VERSION}
  388.     {$IFDEF VER80}
  389.       {$DEFINE COMPILER1}
  390.       {$DEFINE DELPHI1}
  391.       {$DEFINE DELPHICOMPILER1}
  392.       {$DEFINE RTL80_UP}
  393.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  394.     {$ENDIF}
  395.     {$IFDEF VER90}
  396.       {$DEFINE COMPILER2}
  397.       {$DEFINE DELPHI2}
  398.       {$DEFINE DELPHICOMPILER2}
  399.       {$DEFINE RTL90_UP}
  400.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  401.     {$ENDIF}
  402.     {$IFDEF VER93}
  403.       {$DEFINE COMPILER2}
  404.       {$DEFINE BCB1}
  405.       {$DEFINE BCB}
  406.       {$DEFINE RTL93_UP}
  407.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  408.     {$ENDIF}
  409.     {$IFDEF VER100}
  410.       {$DEFINE COMPILER3}
  411.       {$DEFINE DELPHI3}
  412.       {$DEFINE DELPHICOMPILER3}
  413.       {$DEFINE RTL100_UP}
  414.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  415.     {$ENDIF}
  416.     {$IFDEF VER110}
  417.       {$DEFINE COMPILER35}
  418.       {$DEFINE BCB3}
  419.       {$DEFINE RTL110_UP}
  420.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  421.     {$ENDIF}
  422.     {$IFDEF VER120}
  423.       {$DEFINE COMPILER4}
  424.       {$DEFINE DELPHI4}
  425.       {$DEFINE DELPHICOMPILER4}
  426.       {$DEFINE RTL120_UP}
  427.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  428.     {$ENDIF}
  429.     {$IFDEF VER125}
  430.       {$DEFINE COMPILER4}
  431.       {$DEFINE BCB4}
  432.       {$DEFINE BCB}
  433.       {$DEFINE RTL125_UP}
  434.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  435.     {$ENDIF}
  436.     {$IFDEF VER130}
  437.       {$DEFINE COMPILER5}
  438.       {$IFDEF BCB}
  439.         {$DEFINE BCB5}
  440.       {$ELSE}
  441.         {$DEFINE DELPHI5}
  442.         {$DEFINE DELPHICOMPILER5}
  443.       {$ENDIF}
  444.       {$DEFINE RTL130_UP}
  445.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  446.     {$ENDIF}
  447.     {$IFDEF VER140}
  448.       {$DEFINE COMPILER6}
  449.       {$IFDEF BCB}
  450.         {$DEFINE BCB6}
  451.       {$ELSE}
  452.         {$DEFINE DELPHI6}
  453.         {$DEFINE DELPHICOMPILER6}
  454.       {$ENDIF}
  455.       {$DEFINE RTL140_UP}
  456.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  457.     {$ENDIF}
  458.     {$IFDEF VER150}
  459.       {$DEFINE COMPILER7}
  460.       {$DEFINE DELPHI7}
  461.       {$DEFINE DELPHICOMPILER7}
  462.       {$DEFINE RTL150_UP}
  463.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  464.     {$ENDIF}
  465.     {$IFDEF VER160}
  466.       {$DEFINE BDS2}
  467.       {$DEFINE BDS}
  468.       {$IFDEF CLR}
  469.         {$DEFINE CLR10}
  470.       {$ENDIF CLR}
  471.       {$DEFINE COMPILER8}
  472.       {$DEFINE DELPHI8}
  473.       {$DEFINE DELPHICOMPILER8}
  474.       {$DEFINE RTL160_UP}
  475.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  476.     {$ENDIF}
  477.     {$IFDEF VER170}
  478.       {$DEFINE BDS3}
  479.       {$DEFINE BDS}
  480.       {$IFDEF CLR}
  481.         {$DEFINE CLR11}
  482.       {$ENDIF CLR}
  483.       {$DEFINE COMPILER9}
  484.       {$DEFINE DELPHI9}
  485.       {$DEFINE DELPHI2005} // synonym to DELPHI9
  486.       {$DEFINE DELPHICOMPILER9}
  487.       {$DEFINE RTL170_UP}
  488.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  489.     {$ENDIF}
  490.     {$IFDEF VER180}
  491.       {$DEFINE BDS}
  492.       {$IFDEF CLR}
  493.         {$DEFINE CLR11}
  494.       {$ENDIF CLR}
  495.       {$IFDEF VER185}
  496.         {$DEFINE BDS5}
  497.         {$DEFINE COMPILER11}
  498.         {$IFDEF BCB}
  499.           {$DEFINE BCB11}
  500.         {$ELSE}
  501.           {$DEFINE DELPHI11}
  502.           {$DEFINE DELPHI2007} // synonym to DELPHI11
  503.           {$DEFINE DELPHICOMPILER11}
  504.         {$ENDIF}
  505.         {$DEFINE RTL185_UP}
  506.       {$ELSE ~~VER185}
  507.         {$DEFINE BDS4}
  508.         {$DEFINE COMPILER10}
  509.         {$IFDEF BCB}
  510.           {$DEFINE BCB10}
  511.         {$ELSE}
  512.           {$DEFINE DELPHI10}
  513.           {$DEFINE DELPHI2006} // synonym to DELPHI10
  514.           {$DEFINE DELPHICOMPILER10}
  515.         {$ENDIF}
  516.         {$DEFINE RTL180_UP}
  517.       {$ENDIF ~VER185}
  518.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  519.     {$ENDIF}
  520.     {$IFDEF VER190} // Delphi.NET 2007
  521.       {$DEFINE BDS}
  522.       {$DEFINE BDS5}
  523.       {$IFDEF CLR}
  524.         {$DEFINE CLR20}
  525.       {$ENDIF CLR}
  526.       {$DEFINE COMPILER11}
  527.       {$DEFINE DELPHI11}
  528.       {$DEFINE DELPHI2007} // synonym to DELPHI10
  529.       {$DEFINE DELPHICOMPILER11}
  530.       {$DEFINE RTL190_UP}
  531.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  532.     {$ENDIF VER190}
  533.     {$IFDEF UNKNOWN_COMPILER_VERSION} // adjust for newer version (always use latest version)
  534.       {$DEFINE BDS}
  535.       {$DEFINE BDS5}
  536.       {$DEFINE COMPILER11}
  537.       {$DEFINE DELPHI11}
  538.       {$DEFINE DELPHI2007} // synonym to DELPHI11
  539.       {$DEFINE DELPHICOMPILER11}
  540.       {$DEFINE RTL185_UP}
  541.       {$UNDEF UNKNOWN_COMPILER_VERSION}
  542.     {$ENDIF}
  543.   {$ENDIF ~KYLIX}
  544.   {$IFDEF BCB}
  545.     {$DEFINE CPPBUILDER}
  546.     {$DEFINE BCBCOMPILER}
  547.   {$ELSE ~BCB}
  548.     {$DEFINE DELPHI}
  549.     {$DEFINE DELPHICOMPILER}
  550.   {$ENDIF ~BCB}
  551. {$ENDIF BORLAND}
  552. {------------------------------------------------------------------------------}
  553. { DELPHIX_UP from DELPHIX mappings                                             }
  554. {------------------------------------------------------------------------------}
  555. {$IFDEF DELPHI11} {$DEFINE DELPHI11_UP} {$ENDIF}
  556. {$IFDEF DELPHI10} {$DEFINE DELPHI10_UP} {$ENDIF}
  557. {$IFDEF DELPHI9}  {$DEFINE DELPHI9_UP}  {$ENDIF}
  558. {$IFDEF DELPHI8}  {$DEFINE DELPHI8_UP}  {$ENDIF}
  559. {$IFDEF DELPHI7}  {$DEFINE DELPHI7_UP}  {$ENDIF}
  560. {$IFDEF DELPHI6}  {$DEFINE DELPHI6_UP}  {$ENDIF}
  561. {$IFDEF DELPHI5}  {$DEFINE DELPHI5_UP}  {$ENDIF}
  562. {$IFDEF DELPHI4}  {$DEFINE DELPHI4_UP}  {$ENDIF}
  563. {$IFDEF DELPHI3}  {$DEFINE DELPHI3_UP}  {$ENDIF}
  564. {$IFDEF DELPHI2}  {$DEFINE DELPHI2_UP}  {$ENDIF}
  565. {$IFDEF DELPHI1}  {$DEFINE DELPHI1_UP}  {$ENDIF}
  566. {------------------------------------------------------------------------------}
  567. { DELPHIX_UP from DELPHIX_UP mappings                                          }
  568. {------------------------------------------------------------------------------}
  569. {$IFDEF DELPHI11_UP}
  570.   {$DEFINE DELPHI2007_UP} // synonym to DELPHI11_UP
  571.   {$DEFINE DELPHI10_UP}
  572. {$ENDIF}
  573. {$IFDEF DELPHI10_UP}
  574.   {$DEFINE DELPHI2006_UP} // synonym to DELPHI10_UP
  575.   {$DEFINE DELPHI9_UP}
  576. {$ENDIF}
  577. {$IFDEF DELPHI9_UP}
  578.   {$DEFINE DELPHI2005_UP} // synonym to DELPHI9_UP
  579.   {$DEFINE DELPHI8_UP}
  580. {$ENDIF}
  581. {$IFDEF DELPHI8_UP} {$DEFINE DELPHI7_UP} {$ENDIF}
  582. {$IFDEF DELPHI7_UP} {$DEFINE DELPHI6_UP} {$ENDIF}
  583. {$IFDEF DELPHI6_UP} {$DEFINE DELPHI5_UP} {$ENDIF}
  584. {$IFDEF DELPHI5_UP} {$DEFINE DELPHI4_UP} {$ENDIF}
  585. {$IFDEF DELPHI4_UP} {$DEFINE DELPHI3_UP} {$ENDIF}
  586. {$IFDEF DELPHI3_UP} {$DEFINE DELPHI2_UP} {$ENDIF}
  587. {$IFDEF DELPHI2_UP} {$DEFINE DELPHI1_UP} {$ENDIF}
  588. {------------------------------------------------------------------------------}
  589. { BCBX_UP from BCBX mappings                                                   }
  590. {------------------------------------------------------------------------------}
  591. {$IFDEF BCB11} {$DEFINE BCB11_UP} {$ENDIF}
  592. {$IFDEF BCB10} {$DEFINE BCB10_UP} {$ENDIF}
  593. {$IFDEF BCB6}  {$DEFINE BCB6_UP}  {$ENDIF}
  594. {$IFDEF BCB5}  {$DEFINE BCB5_UP}  {$ENDIF}
  595. {$IFDEF BCB4}  {$DEFINE BCB4_UP}  {$ENDIF}
  596. {$IFDEF BCB3}  {$DEFINE BCB3_UP}  {$ENDIF}
  597. {$IFDEF BCB1}  {$DEFINE BCB1_UP}  {$ENDIF}
  598. {------------------------------------------------------------------------------}
  599. { BCBX_UP from BCBX_UP mappings                                                }
  600. {------------------------------------------------------------------------------}
  601. {$IFDEF BCB11_UP} {$DEFINE BCB10_UP} {$ENDIF}
  602. {$IFDEF BCB10_UP} {$DEFINE BCB6_UP}  {$ENDIF}
  603. {$IFDEF BCB6_UP}  {$DEFINE BCB5_UP}  {$ENDIF}
  604. {$IFDEF BCB5_UP}  {$DEFINE BCB4_UP}  {$ENDIF}
  605. {$IFDEF BCB4_UP}  {$DEFINE BCB3_UP}  {$ENDIF}
  606. {$IFDEF BCB3_UP}  {$DEFINE BCB1_UP}  {$ENDIF}
  607. {------------------------------------------------------------------------------}
  608. { BDSX_UP from BDSX mappings                                                   }
  609. {------------------------------------------------------------------------------}
  610. {$IFDEF BDS5} {$DEFINE BDS5_UP} {$ENDIF}
  611. {$IFDEF BDS4} {$DEFINE BDS4_UP} {$ENDIF}
  612. {$IFDEF BDS3} {$DEFINE BDS3_UP} {$ENDIF}
  613. {$IFDEF BDS2} {$DEFINE BDS2_UP} {$ENDIF}
  614. {------------------------------------------------------------------------------}
  615. { BDSX_UP from BDSX_UP mappings                                                }
  616. {------------------------------------------------------------------------------}
  617. {$IFDEF BDS5_UP} {$DEFINE BDS4_UP} {$ENDIF}
  618. {$IFDEF BDS4_UP} {$DEFINE BDS3_UP} {$ENDIF}
  619. {$IFDEF BDS3_UP} {$DEFINE BDS2_UP} {$ENDIF}
  620. {------------------------------------------------------------------------------}
  621. { DELPHICOMPILERX_UP from DELPHICOMPILERX mappings                             }
  622. {------------------------------------------------------------------------------}
  623. {$IFDEF DELPHICOMPILER11} {$DEFINE DELPHICOMPILER11_UP} {$ENDIF}
  624. {$IFDEF DELPHICOMPILER10} {$DEFINE DELPHICOMPILER10_UP} {$ENDIF}
  625. {$IFDEF DELPHICOMPILER9}  {$DEFINE DELPHICOMPILER9_UP}  {$ENDIF}
  626. {$IFDEF DELPHICOMPILER8}  {$DEFINE DELPHICOMPILER8_UP}  {$ENDIF}
  627. {$IFDEF DELPHICOMPILER7}  {$DEFINE DELPHICOMPILER7_UP}  {$ENDIF}
  628. {$IFDEF DELPHICOMPILER6}  {$DEFINE DELPHICOMPILER6_UP}  {$ENDIF}
  629. {$IFDEF DELPHICOMPILER5}  {$DEFINE DELPHICOMPILER5_UP}  {$ENDIF}
  630. {$IFDEF DELPHICOMPILER4}  {$DEFINE DELPHICOMPILER4_UP}  {$ENDIF}
  631. {$IFDEF DELPHICOMPILER3}  {$DEFINE DELPHICOMPILER3_UP}  {$ENDIF}
  632. {$IFDEF DELPHICOMPILER2}  {$DEFINE DELPHICOMPILER2_UP}  {$ENDIF}
  633. {$IFDEF DELPHICOMPILER1}  {$DEFINE DELPHICOMPILER1_UP}  {$ENDIF}
  634. {------------------------------------------------------------------------------}
  635. { DELPHICOMPILERX_UP from DELPHICOMPILERX_UP mappings                          }
  636. {------------------------------------------------------------------------------}
  637. {$IFDEF DELPHICOMPILER11_UP} {$DEFINE DELPHICOMPILER10_UP} {$ENDIF}
  638. {$IFDEF DELPHICOMPILER10_UP} {$DEFINE DELPHICOMPILER9_UP}  {$ENDIF}
  639. {$IFDEF DELPHICOMPILER9_UP}  {$DEFINE DELPHICOMPILER8_UP}  {$ENDIF}
  640. {$IFDEF DELPHICOMPILER8_UP}  {$DEFINE DELPHICOMPILER7_UP}  {$ENDIF}
  641. {$IFDEF DELPHICOMPILER8_UP}  {$DEFINE DELPHICOMPILER7_UP}  {$ENDIF}
  642. {$IFDEF DELPHICOMPILER7_UP}  {$DEFINE DELPHICOMPILER6_UP}  {$ENDIF}
  643. {$IFDEF DELPHICOMPILER6_UP}  {$DEFINE DELPHICOMPILER5_UP}  {$ENDIF}
  644. {$IFDEF DELPHICOMPILER5_UP}  {$DEFINE DELPHICOMPILER4_UP}  {$ENDIF}
  645. {$IFDEF DELPHICOMPILER4_UP}  {$DEFINE DELPHICOMPILER3_UP}  {$ENDIF}
  646. {$IFDEF DELPHICOMPILER3_UP}  {$DEFINE DELPHICOMPILER2_UP}  {$ENDIF}
  647. {$IFDEF DELPHICOMPILER2_UP}  {$DEFINE DELPHICOMPILER1_UP}  {$ENDIF}
  648. {------------------------------------------------------------------------------}
  649. { COMPILERX_UP from COMPILERX mappings                                         }
  650. {------------------------------------------------------------------------------}
  651. {$IFDEF COMPILER11} {$DEFINE COMPILER11_UP} {$ENDIF}
  652. {$IFDEF COMPILER10} {$DEFINE COMPILER10_UP} {$ENDIF}
  653. {$IFDEF COMPILER9}  {$DEFINE COMPILER9_UP}  {$ENDIF}
  654. {$IFDEF COMPILER8}  {$DEFINE COMPILER8_UP}  {$ENDIF}
  655. {$IFDEF COMPILER7}  {$DEFINE COMPILER7_UP}  {$ENDIF}
  656. {$IFDEF COMPILER6}  {$DEFINE COMPILER6_UP}  {$ENDIF}
  657. {$IFDEF COMPILER5}  {$DEFINE COMPILER5_UP}  {$ENDIF}
  658. {$IFDEF COMPILER4}  {$DEFINE COMPILER4_UP}  {$ENDIF}
  659. {$IFDEF COMPILER35} {$DEFINE COMPILER35_UP} {$ENDIF}
  660. {$IFDEF COMPILER3}  {$DEFINE COMPILER3_UP}  {$ENDIF}
  661. {$IFDEF COMPILER2}  {$DEFINE COMPILER2_UP}  {$ENDIF}
  662. {$IFDEF COMPILER1}  {$DEFINE COMPILER1_UP}  {$ENDIF}
  663. {------------------------------------------------------------------------------}
  664. { COMPILERX_UP from COMPILERX_UP mappings                                      }
  665. {------------------------------------------------------------------------------}
  666. {$IFDEF COMPILER11_UP} {$DEFINE COMPILER10_UP} {$ENDIF}
  667. {$IFDEF COMPILER10_UP} {$DEFINE COMPILER9_UP}  {$ENDIF}
  668. {$IFDEF COMPILER9_UP}  {$DEFINE COMPILER8_UP}  {$ENDIF}
  669. {$IFDEF COMPILER8_UP}  {$DEFINE COMPILER7_UP}  {$ENDIF}
  670. {$IFDEF COMPILER7_UP}  {$DEFINE COMPILER6_UP}  {$ENDIF}
  671. {$IFDEF COMPILER6_UP}  {$DEFINE COMPILER5_UP}  {$ENDIF}
  672. {$IFDEF COMPILER5_UP}  {$DEFINE COMPILER4_UP}  {$ENDIF}
  673. {$IFDEF COMPILER4_UP}  {$DEFINE COMPILER35_UP} {$ENDIF}
  674. {$IFDEF COMPILER35_UP} {$DEFINE COMPILER3_UP}  {$ENDIF}
  675. {$IFDEF COMPILER3_UP}  {$DEFINE COMPILER2_UP}  {$ENDIF}
  676. {$IFDEF COMPILER2_UP}  {$DEFINE COMPILER1_UP}  {$ENDIF}
  677. {------------------------------------------------------------------------------}
  678. { RTLX_UP from RTLX_UP mappings                                                }
  679. {------------------------------------------------------------------------------}
  680. {$IFDEF RTL190_UP} {$DEFINE RTL185_UP} {$ENDIF}
  681. {$IFDEF RTL185_UP} {$DEFINE RTL180_UP} {$ENDIF}
  682. {$IFDEF RTL180_UP} {$DEFINE RTL170_UP} {$ENDIF}
  683. {$IFDEF RTL170_UP} {$DEFINE RTL160_UP} {$ENDIF}
  684. {$IFDEF RTL160_UP} {$DEFINE RTL150_UP} {$ENDIF}
  685. {$IFDEF RTL150_UP} {$DEFINE RTL145_UP} {$ENDIF}
  686. {$IFDEF RTL145_UP} {$DEFINE RTL142_UP} {$ENDIF}
  687. {$IFDEF RTL142_UP} {$DEFINE RTL140_UP} {$ENDIF}
  688. {$IFDEF RTL140_UP} {$DEFINE RTL130_UP} {$ENDIF}
  689. {$IFDEF RTL130_UP} {$DEFINE RTL125_UP} {$ENDIF}
  690. {$IFDEF RTL125_UP} {$DEFINE RTL120_UP} {$ENDIF}
  691. {$IFDEF RTL120_UP} {$DEFINE RTL110_UP} {$ENDIF}
  692. {$IFDEF RTL110_UP} {$DEFINE RTL100_UP} {$ENDIF}
  693. {$IFDEF RTL100_UP} {$DEFINE RTL93_UP}  {$ENDIF}
  694. {$IFDEF RTL93_UP}  {$DEFINE RTL90_UP}  {$ENDIF}
  695. {$IFDEF RTL90_UP}  {$DEFINE RTL80_UP}  {$ENDIF}
  696. {------------------------------------------------------------------------------}
  697. { Check for CLR overrides of default detection                                 }
  698. {------------------------------------------------------------------------------}
  699. {$IFDEF CLR}
  700.   {$IFDEF FORCE_CLR10}
  701.     {$DEFINE CLR10}
  702.     {$UNDEF CLR11}
  703.     {$UNDEF CLR20}
  704.   {$ENDIF FORCE_CLR10}
  705.   {$IFDEF FORCE_CLR11}
  706.     {$UNDEF CLR10}
  707.     {$DEFINE CLR11}
  708.     {$UNDEF CLR20}
  709.   {$ENDIF FORCE_CLR11}
  710.   {$IFDEF FORCE_CLR20}
  711.     {$UNDEF CLR10}
  712.     {$UNDEF CLR11}
  713.     {$DEFINE CLR20}
  714.   {$ENDIF FORCE_CLR20}
  715. {$ENDIF CLR}
  716. {------------------------------------------------------------------------------}
  717. { CLRX from CLRX_UP mappings                                                   }
  718. {------------------------------------------------------------------------------}
  719. {$IFDEF CLR10} {$DEFINE CLR10_UP} {$ENDIF}
  720. {$IFDEF CLR11} {$DEFINE CLR11_UP} {$ENDIF}
  721. {$IFDEF CLR20} {$DEFINE CLR20_UP} {$ENDIF}
  722. {------------------------------------------------------------------------------}
  723. { CLRX_UP from CLRX_UP mappings                                                }
  724. {------------------------------------------------------------------------------}
  725. {$IFDEF CLR20_UP} {$DEFINE CLR11_UP} {$ENDIF}
  726. {$IFDEF CLR11_UP} {$DEFINE CLR10_UP} {$ENDIF}
  727. {------------------------------------------------------------------------------}
  728. {$IFDEF DELPHICOMPILER}
  729.   {$DEFINE DELPHILANGUAGE}
  730. {$ENDIF}
  731. {$IFDEF BCBCOMPILER}
  732.   {$DEFINE DELPHILANGUAGE}
  733. {$ENDIF}
  734. {------------------------------------------------------------------------------}
  735. { KYLIXX_UP from KYLIXX mappings                                               }
  736. {------------------------------------------------------------------------------}
  737. {$IFDEF KYLIX3} {$DEFINE KYLIX3_UP} {$ENDIF}
  738. {$IFDEF KYLIX2} {$DEFINE KYLIX2_UP} {$ENDIF}
  739. {$IFDEF KYLIX1} {$DEFINE KYLIX1_UP} {$ENDIF}
  740. {------------------------------------------------------------------------------}
  741. { KYLIXX_UP from KYLIXX_UP mappings                                            }
  742. {------------------------------------------------------------------------------}
  743. {$IFDEF KYLIX3_UP} {$DEFINE KYLIX2_UP} {$ENDIF}
  744. {$IFDEF KYLIX2_UP} {$DEFINE KYLIX1_UP} {$ENDIF}
  745. {------------------------------------------------------------------------------}
  746. { Map COMPILERX_UP to friendly feature names                                   }
  747. {------------------------------------------------------------------------------}
  748. {$IFDEF FPC}
  749.   {$IFDEF  VER1_0}
  750.      Please use FPC 2.0 or later to compile this.
  751.   {$ELSE}
  752.     {$DEFINE SUPPORTS_OUTPARAMS}
  753.     {$DEFINE SUPPORTS_WIDECHAR}
  754.     {$DEFINE SUPPORTS_WIDESTRING}
  755.     {$IFDEF HASINTF}
  756.       {$DEFINE SUPPORTS_INTERFACE}
  757.     {$ENDIF}
  758.     {$IFDEF HASVARIANT}
  759.       {$DEFINE SUPPORTS_VARIANT}
  760.     {$ENDIF}
  761.     {$IFDEF FPC_HAS_TYPE_SINGLE}
  762.       {$DEFINE SUPPORTS_SINGLE}
  763.     {$ENDIF}
  764.     {$IFDEF FPC_HAS_TYPE_DOUBLE}
  765.       {$DEFINE SUPPORTS_DOUBLE}
  766.     {$ENDIF}
  767.     {$IFDEF FPC_HAS_TYPE_EXTENDED}
  768.       {$DEFINE SUPPORTS_EXTENDED}
  769.     {$ENDIF}
  770.     {$IFDEF HASCURRENCY}
  771.       {$DEFINE SUPPORTS_CURRENCY}
  772.     {$ENDIF}
  773.     {$DEFINE SUPPORTS_THREADVAR}
  774.     {$DEFINE SUPPORTS_CONSTPARAMS}
  775.     {$DEFINE SUPPORTS_LONGWORD}
  776.     {$DEFINE SUPPORTS_INT64}
  777.     {$DEFINE SUPPORTS_DYNAMICARRAYS}
  778.     {$DEFINE SUPPORTS_DEFAULTPARAMS}
  779.     {$DEFINE SUPPORTS_OVERLOAD}
  780.     {$DEFINE ACCEPT_DEPRECATED}  // 2.2 also gives warnings
  781.     {$DEFINE ACCEPT_PLATFORM}    // 2.2 also gives warnings
  782.     {$DEFINE ACCEPT_LIBRARY}
  783.     {$DEFINE SUPPORTS_EXTSYM}
  784.     {$DEFINE SUPPORTS_NODEFINE}
  785.     {$DEFINE SUPPORTS_CUSTOMVARIANTS}
  786.     {$DEFINE SUPPORTS_VARARGS}
  787.     {$DEFINE SUPPORTS_ENUMVALUE}
  788.     {$IFDEF LINUX}
  789.       {$DEFINE HAS_UNIT_LIBC}
  790.     {$ENDIF LINUX}
  791.     {$DEFINE HAS_UNIT_CONTNRS}
  792.     {$DEFINE HAS_UNIT_TYPES}
  793.     {$DEFINE HAS_UNIT_VARIANTS}
  794.     {$DEFINE HAS_UNIT_STRUTILS}
  795.     {$DEFINE HAS_UNIT_DATEUTILS}
  796.     {$DEFINE HAS_UNIT_RTLCONSTS}
  797.     {$DEFINE XPLATFORM_RTL}
  798.     {$IFDEF VER2_2}
  799.       {$DEFINE SUPPORTS_DISPINTERFACE}
  800.       {$DEFINE SUPPORTS_IMPLEMENTS}
  801.       {$DEFINE SUPPORTS_DISPID}
  802.     {$ELSE}
  803.       {$UNDEF SUPPORTS_DISPINTERFACE}
  804.       {$UNDEF SUPPORTS_IMPLEMENTS}
  805.     {$endif}
  806.     {$UNDEF SUPPORTS_UNSAFE_WARNINGS}
  807.   {$ENDIF}
  808. {$ENDIF FPC}
  809. {$IFDEF CONDITIONALEXPRESSIONS}
  810.   {$IFDEF CLR}
  811.     {$DEFINE SUPPORTS_UNICODE}
  812.   {$ELSE}
  813.     {$IFDEF COMPILER12_UP}
  814.       {$DEFINE SUPPORTS_UNICODE}
  815.     {$ENDIF COMPILER12_UP}
  816.   {$ENDIF CLR}
  817. {$ENDIF CONDITIONALEXPRESSIONS}
  818. {$IFDEF COMPILER1_UP}
  819.   {$DEFINE SUPPORTS_CONSTPARAMS}
  820.   {$DEFINE SUPPORTS_SINGLE}
  821.   {$DEFINE SUPPORTS_DOUBLE}
  822.   {$DEFINE SUPPORTS_EXTENDED}
  823.   {$DEFINE SUPPORTS_PACKAGES} 
  824. {$ENDIF COMPILER1_UP}
  825. {$IFDEF COMPILER2_UP}
  826.   {$DEFINE SUPPORTS_CURRENCY}
  827.   {$DEFINE SUPPORTS_THREADVAR}
  828.   {$DEFINE SUPPORTS_VARIANT}
  829.   {$DEFINE SUPPORTS_WIDECHAR}
  830. {$ENDIF COMPILER2_UP}
  831. {$IFDEF COMPILER3_UP}
  832.   {$DEFINE SUPPORTS_OUTPARAMS}
  833.   {$DEFINE SUPPORTS_WIDESTRING}
  834.   {$DEFINE SUPPORTS_INTERFACE}
  835.   {$DEFINE SUPPORTS_DISPINTERFACE}
  836.   {$DEFINE SUPPORTS_DISPID}
  837.   {$DEFINE SUPPORTS_WEAKPACKAGEUNIT}
  838. {$ENDIF COMPILER3_UP}
  839. {$IFDEF COMPILER35_UP}
  840.   {$DEFINE SUPPORTS_EXTSYM}
  841.   {$DEFINE SUPPORTS_NODEFINE}
  842. {$ENDIF COMPILER35_UP}
  843. {$IFDEF COMPILER4_UP}
  844.   {$DEFINE SUPPORTS_LONGWORD}
  845.   {$DEFINE SUPPORTS_INT64}
  846.   {$DEFINE SUPPORTS_DYNAMICARRAYS}
  847.   {$DEFINE SUPPORTS_DEFAULTPARAMS}
  848.   {$DEFINE SUPPORTS_OVERLOAD}
  849.   {$DEFINE SUPPORTS_IMPLEMENTS}
  850. {$ENDIF COMPILER4_UP}
  851. {$IFDEF COMPILER6_UP}
  852.   {$DEFINE SUPPORTS_DEPRECATED}
  853.   {$DEFINE SUPPORTS_LIBRARY}
  854.   {$DEFINE SUPPORTS_PLATFORM}
  855.   {$DEFINE SUPPORTS_LOCAL}
  856.   {$DEFINE ACCEPT_DEPRECATED}
  857.   {$DEFINE ACCEPT_PLATFORM}
  858.   {$DEFINE ACCEPT_LIBRARY}
  859.   {$DEFINE SUPPORTS_DEPRECATED_WARNINGS}
  860.   {$DEFINE SUPPORTS_LIBRARY_WARNINGS}
  861.   {$DEFINE SUPPORTS_PLATFORM_WARNINGS}
  862.   {$DEFINE SUPPORTS_CUSTOMVARIANTS}
  863.   {$DEFINE SUPPORTS_VARARGS}
  864.   {$DEFINE SUPPORTS_ENUMVALUE}
  865.   {$DEFINE SUPPORTS_COMPILETIME_MESSAGES}
  866. {$ENDIF COMPILER6_UP}
  867. {$IFDEF COMPILER7_UP}
  868.   {$DEFINE SUPPORTS_UNSAFE_WARNINGS}
  869. {$ENDIF COMPILER7_UP}
  870. {$IFDEF COMPILER9_UP}
  871.   {$DEFINE SUPPORTS_FOR_IN}
  872.   {$DEFINE SUPPORTS_INLINE}
  873.   {$DEFINE SUPPORTS_NESTED_CONSTANTS}
  874.   {$DEFINE SUPPORTS_NESTED_TYPES}
  875.   {$IFDEF CLR}
  876.     {$DEFINE SUPPORTS_ENHANCED_RECORDS}
  877.     {$DEFINE SUPPORTS_CLASS_FIELDS}
  878.     {$DEFINE SUPPORTS_CLASS_HELPERS}
  879.     {$DEFINE SUPPORTS_CLASS_OPERATORS}
  880.     {$DEFINE SUPPORTS_STRICT}
  881.     {$DEFINE SUPPORTS_STATIC}
  882.     {$DEFINE SUPPORTS_FINAL}
  883.   {$ENDIF CLR}
  884. {$ENDIF COMPILER9_UP}
  885. {$IFDEF COMPILER10_UP}
  886.   {$DEFINE SUPPORTS_ENHANCED_RECORDS}
  887.   {$DEFINE SUPPORTS_CLASS_FIELDS}
  888.   {$DEFINE SUPPORTS_CLASS_HELPERS}
  889.   {$DEFINE SUPPORTS_CLASS_OPERATORS}
  890.   {$DEFINE SUPPORTS_STRICT}
  891.   {$DEFINE SUPPORTS_STATIC}
  892.   {$DEFINE SUPPORTS_FINAL}
  893. {$ENDIF COMPILER10_UP}
  894. {$IFDEF COMPILER11_UP}
  895.   {$IFDEF CLR}
  896.     {$DEFINE SUPPORTS_GENERICS}
  897.   {$ENDIF CLR}
  898. {$ENDIF COMPILER11_UP}
  899. {$IFDEF RTL140_UP}
  900.   {$IFDEF LINUX}
  901.     {$DEFINE HAS_UNIT_LIBC}
  902.   {$ENDIF LINUX}
  903.   {$DEFINE HAS_UNIT_RTLCONSTS}
  904.   {$DEFINE HAS_UNIT_TYPES}
  905.   {$DEFINE HAS_UNIT_VARIANTS}
  906.   {$DEFINE HAS_UNIT_STRUTILS}
  907.   {$DEFINE HAS_UNIT_DATEUTILS}
  908.   {$DEFINE XPLATFORM_RTL}
  909. {$ENDIF RTL140_UP}
  910. {$IFDEF RTL130_UP}
  911.   {$DEFINE HAS_UNIT_CONTNRS}
  912. {$ENDIF RTL130_UP}
  913. {------------------------------------------------------------------------------}
  914. { Cross-platform related defines                                               }
  915. {------------------------------------------------------------------------------}
  916. {$IFNDEF CPU386}
  917.   {$DEFINE PUREPASCAL}
  918. {$ENDIF}
  919. {$IFDEF WIN32}
  920.   {$DEFINE MSWINDOWS} // predefined for D6+/BCB6+
  921.   {$DEFINE Win32API}
  922. {$ENDIF}
  923. {$IFDEF DELPHILANGUAGE}
  924.   {$IFDEF LINUX}
  925.     {$DEFINE UNIX}
  926.   {$ENDIF}
  927.   {$IFNDEF CONSOLE}
  928.     {$IFDEF LINUX}
  929.       {$DEFINE VisualCLX}
  930.     {$ENDIF}
  931.     {$IFNDEF VisualCLX}
  932.       {$DEFINE VCL}
  933.     {$ENDIF}
  934.   {$ENDIF ~CONSOLE}
  935. {$ENDIF DELPHILANGUAGE}
  936. {------------------------------------------------------------------------------}
  937. { Compiler settings                                                            }
  938. {------------------------------------------------------------------------------}
  939. {$IFOPT A+} {$DEFINE ALIGN_ON} {$ENDIF}
  940. {$IFOPT B+} {$DEFINE BOOLEVAL_ON} {$ENDIF}
  941. {$IFDEF COMPILER2_UP}
  942.   {$IFOPT C+} {$DEFINE ASSERTIONS_ON} {$ENDIF}
  943. {$ENDIF}
  944. {$IFOPT D+} {$DEFINE DEBUGINFO_ON} {$ENDIF}
  945. {$IFOPT G+} {$DEFINE IMPORTEDDATA_ON} {$ENDIF}
  946. {$IFDEF COMPILER2_UP}
  947.   {$IFOPT H+} {$DEFINE LONGSTRINGS_ON} {$ENDIF}
  948. {$ENDIF}
  949. // Hints
  950. {$IFOPT I+} {$DEFINE IOCHECKS_ON} {$ENDIF}
  951. {$IFDEF COMPILER2_UP}
  952.   {$IFOPT J+} {$DEFINE WRITEABLECONST_ON} {$ENDIF}
  953. {$ENDIF}
  954. {$IFOPT L+} {$DEFINE LOCALSYMBOLS} {$ENDIF}
  955. {$IFOPT M+} {$DEFINE TYPEINFO_ON} {$ENDIF}
  956. {$IFOPT O+} {$DEFINE OPTIMIZATION_ON} {$ENDIF}
  957. {$IFOPT P+} {$DEFINE OPENSTRINGS_ON} {$ENDIF}
  958. {$IFOPT Q+} {$DEFINE OVERFLOWCHECKS_ON} {$ENDIF}
  959. {$IFOPT R+} {$DEFINE RANGECHECKS_ON} {$ENDIF}
  960. // Real compatibility
  961. {$IFOPT T+} {$DEFINE TYPEDADDRESS_ON} {$ENDIF}
  962. {$IFOPT U+} {$DEFINE SAFEDIVIDE_ON} {$ENDIF}
  963. {$IFOPT V+} {$DEFINE VARSTRINGCHECKS_ON} {$ENDIF}
  964. {$IFOPT W+} {$DEFINE STACKFRAMES_ON} {$ENDIF}
  965. // Warnings
  966. {$IFOPT X+} {$DEFINE EXTENDEDSYNTAX_ON} {$ENDIF}
  967. // for Delphi/BCB trial versions remove the point from the line below
  968. {.$UNDEF SUPPORTS_WEAKPACKAGEUNIT}
  969. {$ENDIF ~JEDI_INC}