TB2Ver.inc 751 B

123456789101112131415161718192021
  1. { $jrsoftware: tb2k/Source/TB2Ver.inc,v 1.5 2004/12/19 21:57:34 jr Exp $ }
  2. { Determine Delphi/C++Builder version }
  3. {$IFNDEF WIN32} Delphi 1 is not supported. {$ENDIF}
  4. {$IFNDEF VER90} { if it's not Delphi 2.0 }
  5. {$IFNDEF VER93} { and it's not C++Builder 1.0 }
  6. {$IFNDEF VER100} { if it's not Delphi 3.0 }
  7. {$IFNDEF VER120} { Delphi 4/5's command line compiler doesn't like the ObjExportAll directive, so don't include it on Delphi 4/5 }
  8. {$IFNDEF VER130}
  9. {$ObjExportAll On} { <- needed for compatibility with run-time packages in C++Builder 3+ }
  10. {$ENDIF}
  11. {$ENDIF}
  12. {$ENDIF}
  13. {$ENDIF}
  14. {$ENDIF}
  15. {$ALIGN ON}
  16. {$BOOLEVAL OFF}
  17. {$LONGSTRINGS ON}
  18. {$TYPEDADDRESS OFF}
  19. {$WRITEABLECONST ON}