-
Notifications
You must be signed in to change notification settings - Fork 0
/
CCR.Exif.inc
62 lines (49 loc) · 1.32 KB
/
CCR.Exif.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
{.$DEFINE FMX} //*** remove the dot to assume FMX on Windows ***
{$IFNDEF MSWINDOWS} //no VCL outside of Windows
{$DEFINE FMX}
{$ENDIF}
{$IF CompilerVersion >= 25}
{$LEGACYIFEND ON}
{$ZEROBASEDSTRINGS OFF}
{$IFEND}
{$IF CompilerVersion < 23} //no FMX before XE2
{$UNDEF FMX}
{$IFEND}
{$IFDEF FMX}
{$UNDEF VCL}
{$ELSE}
{$IFDEF MSWINDOWS}
{$DEFINE VCL} //if not FMX, assume VCL on Windows
{$ENDIF}
{$ENDIF}
{$IF CompilerVersion >= 18.5}
{$DEFINE CanInline} //inlining record methods is unstable before D2007
{$IFEND}
{$IF CompilerVersion >= 20}
{$DEFINE DepCom} //deprecated directive allows comments from D2009
{$DEFINE HasToString}
{$IFEND}
{$IF CompilerVersion >= 21}
{$DEFINE NoRecEnumBug} //QC 72213
{$DEFINE HasIOUtils}
{$IFEND}
{$IF CompilerVersion >= 22}
{$DEFINE HasTTimeZone}
{$DEFINE HasGenerics}
{$DEFINE HasFormatSettings}
{$IFEND}
{$IF CompilerVersion >= 24}
{$DEFINE XE3+}
{$IFEND}
{$IF (CompilerVersion = 26) AND Defined(NEXTGEN)}
{$DEFINE NeedHausladenByteStringsFix}
{$IFEND}
{$IF DEFINED(VER240) AND DEFINED(MACOS)}
{$DEFINE BrokenFMXJpegExport}
{$IFEND}
{$IFOPT Q+}
{$DEFINE OverflowCheckingOn}
{$ENDIF}
{$IFOPT R-}
{$DEFINE RangeCheckingOff}
{$ENDIF}