-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrs.inc
90 lines (78 loc) · 2.04 KB
/
rs.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{*** rs.inc include file
* This file is included into each component unit and serves
* as a common place to specify compiler directives and conditional defines.
*
* 2002 by Jose Rui Santos
* http://www.RuiSoftware.com
* mailto:Delphi@RuiSoftware.com
* License: Freeware
*}
{$IFDEF WIN32}
{$DEFINE DELPHI2_OR_HIGHER}
{$ENDIF}
{$IFNDEF VER80}
{$IFNDEF VER90}
{$IFNDEF VER93}
{$DEFINE DELPHI3_OR_HIGHER}
{$IFNDEF VER100}
{$DEFINE BCB3_OR_HIGHER}
{$IFNDEF VER110}
{$DEFINE DELPHI4_OR_HIGHER}
{$IFNDEF VER120}
{$DEFINE BCB4_OR_HIGHER}
{$IFNDEF VER125}
{$DEFINE DELPHI5_OR_HIGHER}
{$IFNDEF VER140}
{$DEFINE DELPHI6_OR_HIGHER}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$IFDEF VER93}
{$DEFINE BCB_COMPILER}
{$ENDIF}
{$IFDEF VER110}
{$DEFINE BCB_COMPILER}
{$OBJEXPORTALL ON}
{$ENDIF}
{$IFDEF VER125}
{$DEFINE BCB_COMPILER}
{$OBJEXPORTALL ON}
{$ENDIF}
{ Code Generation Directives }
{$F-} { Force Far Calls}
{$A+} { Word Align Data }
{$U-} { Pentium-Safe FDIV}
{$K-} { Smart CallBacks }
{$W-} { Windows Stack Frame }
{$O+} { Optimization }
{ Runtime Erros }
{$IFOPT D+}
{$R+} { Range Checking On - if compiled with Debug Information }
{$ELSE}
{$R-} { Range Checking Off - if compiled with Debug Information }
{$ENDIF}
{$S-} { Stack Checking }
{$I+} { I/O Checking }
{$Q-} { Overflow Checking }
{ Syntax Options }
{$V-} { Strict Var-Strings }
{$B-} { Complete Boolean Evaluator }
{$X+} { Extented Syntax }
{$T-} { Typed @ Operator }
{$P+} { Open Parameters }
{$IFDEF DELPHI4_OR_HIGHER}
{$J+} { Writeable Typed Constants }
{$ENDIF}
{ Miscellaneous Directives }
{$C MOVEABLE DEMANDLOAD DISCARDABLE} { Code Segment Attribute }
{$G+} { Delphi 1: 286 Instructions / Delphi 3 & later: Imported Data }
{$N+} { Numeric Coprocessor }
{$Z-} { Word Size Enumerated Types }
{$IFDEF WIN32}
{$H+} { Long String Support }
{$ENDIF}