Liste complète des définitions pour les versions Delphi
Est-ce que quelqu'un connaît un bon endroit où je peux trouver la liste complète des versions pour toutes les versions de Delphi, Jusqu'à Delphi 2009?
29
demandé sur
Brian Tompsett - 汤莱恩
2009-04-15 12:37:27
3 réponses
Un très, très bon fichier Delphi Version include est le jedi.inc
de la bibliothèque de Code Jedi ( JCL ).
, Il est toujours à jour et possède des directives comme DELPHI2009
ou DELPHI14_UP
, ... et il inclut beaucoup de" directives de fonctionnalité " comme SUPPORTS_INT64
ou SUPPORTS_UNICODE_STRING
.
Voici le lien vers le référentiel.
37
répondu
ulrichb
2013-08-16 14:38:05
Voici une liste que j'ai trouvé que l'on pouvait s'attendre à être tenu à jour:
Http://docwiki.embarcadero.com/RADStudio/en/Compiler_Versions
8
répondu
johnny
2012-03-08 12:56:57
Vous pourriez nous le GX_CondDefine.inc
De la grande gexperts plugin:
{$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}
7
répondu
Davy Landman
2009-04-15 08:48:32