Jedi.inc
上传用户:ctlcnc
上传日期:2021-12-10
资源大小:4933k
文件大小:44k
源码类别:

2D图形编程

开发平台:

Delphi

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