defines.inc
上传用户:raido2005
上传日期:2022-06-22
资源大小:5044k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. //*******************************************************//
  2. //                                                       //
  3. //                      DelphiFlash.com                  //
  4. //         Copyright (c) 2004-2007 FeatherySoft, Inc.    //
  5. //                    info@delphiflash.com               //
  6. //                                                       //
  7. //*******************************************************//
  8. // Description: directives for source code compatibility
  9. //              with different versions of Delphi
  10. {$IFDEF VER130}
  11. // Delphi 5
  12.    {$DEFINE ExternalUTF}
  13. {$ENDIF}
  14. {$IFDEF VER140}
  15. // Delphi 6
  16.   {$DEFINE VARIANTS}
  17. {$ENDIF}
  18. {$IFDEF VER150}
  19. // Delphi 7
  20.   {$DEFINE VARIANTS}
  21. {$ENDIF}
  22. {$IFDEF VER170}
  23. // Delphi 2005
  24.   {$DEFINE VARIANTS}
  25. {$ENDIF}
  26. {$IFDEF VER180}
  27. // Delphi 2006
  28.   {$DEFINE VARIANTS}
  29. {$ENDIF}
  30. {$IFDEF VER185}
  31. // Delphi 2007
  32.   {$DEFINE VARIANTS}
  33. {$ENDIF}
  34. // Defines necessity of use JPEG.pas
  35. // it uses for automatic converting
  36. // from Progressive to non progressive JPEG
  37. {$DEFINE DelphiJPEG}
  38. // XML support start from Delphi 6
  39. {$IFDEF VARIANTS}
  40.   {$DEFINE XMLSupport}
  41. {$ENDIF}
  42. // Include ActionScript compiler engine
  43. {..$DEFINE ASCompiler}