Complete list of defines for Delphi versions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T19:06:32Z http://stackoverflow.com/feeds/question/750801 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/750801/complete-list-of-defines-for-delphi-versions 7 Complete list of defines for Delphi versions Gustavo Carreno 2009-04-15T08:37:27Z 2009-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#750830 4 Answer by Davy Landman for Complete list of defines for Delphi versions Davy Landman 2009-04-15T08:48:32Z 2009-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 &gt;= 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 &gt;= 15} {$DEFINE GX_VER150_up} // Delphi 7 {$IF CompilerVersion &gt;= 16} {$DEFINE GX_VER160_up} // Delphi 8 {$IF CompilerVersion &gt;= 17} {$DEFINE GX_VER170_up} // Delphi 9/2005 {$IF CompilerVersion &gt;= 18} {$DEFINE GX_VER180_up} // BDS 2006 {$IFDEF VER185} {$DEFINE GX_VER185_up} // Delphi 2007 {$ENDIF} {$IF CompilerVersion &gt;= 19} {$DEFINE GX_VER190_up} // Delphi .NET 2007 {$IF CompilerVersion &gt;= 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#750854 15 Answer by ulrichb for Complete list of defines for Delphi versions ulrichb 2009-04-15T08:58:57Z 2009-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>