Complete list of defines for Delphi versions - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T19:06:32Zhttp://stackoverflow.com/feeds/question/750801http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/750801/complete-list-of-defines-for-delphi-versions7Complete list of defines for Delphi versionsGustavo Carreno2009-04-15T08:37:27Z2009-04-16T11:57:16Z
<p>Does anyone know of a good place where I can find the complete list of version defines for all the Delphi versions, right up to Delphi 2009?</p>
http://stackoverflow.com/questions/750801/complete-list-of-defines-for-delphi-versions/750830#7508304Answer by Davy Landman for Complete list of defines for Delphi versionsDavy Landman2009-04-15T08:48:32Z2009-04-15T08:48:32Z<p>You could us the <a href="http://gexperts.svn.sourceforge.net/viewvc/gexperts/trunk/Source/Framework/GX%5FCondDefine.inc?view=markup" rel="nofollow"><code>GX_CondDefine.inc</code></a> From the great <a href="http://www.gexperts.org/" rel="nofollow">gexperts</a> plugin:</p>
<pre><code>{$IFDEF CONDITIONALEXPRESSIONS}
{$IFDEF BCB}
{$DEFINE GX_BCB}
{$ELSE}
{$DEFINE GX_Delphi}
{$ENDIF}
{$IF CompilerVersion >= 14}
{$DEFINE GX_VER140_up} // Delphi 6
{$IFDEF LINUX}
{$DEFINE GX_KYLIX}
{$IF RTLVersion = 14.2}
{$DEFINE GX_KYLIX2} // Kylix 2
{$IFEND}
{$IF RTLVersion = 14.5}
{$DEFINE GX_KYLIX3} // Kylix 3
{$IFEND}
{$ENDIF}
{$IF CompilerVersion >= 15}
{$DEFINE GX_VER150_up} // Delphi 7
{$IF CompilerVersion >= 16}
{$DEFINE GX_VER160_up} // Delphi 8
{$IF CompilerVersion >= 17}
{$DEFINE GX_VER170_up} // Delphi 9/2005
{$IF CompilerVersion >= 18}
{$DEFINE GX_VER180_up} // BDS 2006
{$IFDEF VER185}
{$DEFINE GX_VER185_up} // Delphi 2007
{$ENDIF}
{$IF CompilerVersion >= 19}
{$DEFINE GX_VER190_up} // Delphi .NET 2007
{$IF CompilerVersion >= 20}
{$DEFINE GX_VER200_up} // RAD Studio 2009
{$IFEND}
{$IFEND}
{$IFEND}
{$IFEND}
{$IFEND}
{$IFEND}
{$IFEND}
{$ELSE not CONDITIONALEXPRESSIONS}
Sorry, but this version of GExperts does not support the IDE
you are using. Please visit the GExperts web site at
http://www.gexperts.org/ to obtain more information about
support for your IDE.
{$ENDIF}
</code></pre>
http://stackoverflow.com/questions/750801/complete-list-of-defines-for-delphi-versions/750854#75085415Answer by ulrichb for Complete list of defines for Delphi versionsulrichb2009-04-15T08:58:57Z2009-04-15T08:58:57Z<p>A very, very good Delphi version include file is the <code>jedi.inc</code> from the the JEDI Code Library (<strong>JCL</strong>). </p>
<p>It is always up-to-date and it includes a lot of "Feature Directives" like <code>SUPPORTS_INT64</code> or <code>SUPPORTS_UNICODE_STRING</code>.</p>
<p>Here is the <a href="https://jcl.svn.sourceforge.net/svnroot/jcl/trunk/jcl/source/include/jedi.inc" rel="nofollow">SVN link</a>.</p>