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