aboutsummaryrefslogtreecommitdiffstats
path: root/unicode/src/lib/freetype/fttypes.inc
diff options
context:
space:
mode:
Diffstat (limited to 'unicode/src/lib/freetype/fttypes.inc')
-rw-r--r--unicode/src/lib/freetype/fttypes.inc10
1 files changed, 9 insertions, 1 deletions
diff --git a/unicode/src/lib/freetype/fttypes.inc b/unicode/src/lib/freetype/fttypes.inc
index c77dd1e8..a64432e6 100644
--- a/unicode/src/lib/freetype/fttypes.inc
+++ b/unicode/src/lib/freetype/fttypes.inc
@@ -86,7 +86,13 @@
(* values 1 and 0 represent true and false, respectively. *)
(* *)
FT_Bool = cuchar;
-
+{$ENDIF TYPE_DECL}
+{$IFNDEF TYPE_DECL}
+const
+ FT_FALSE = 0;
+ FT_TRUE = 1;
+{$ENDIF !TYPE_DECL}
+{$IFDEF TYPE_DECL}
(*************************************************************************)
(* *)
@@ -123,6 +129,8 @@
FT_Short = csshort;
PFT_Short = ^FT_Short;
+ PFT_ShortArray = ^FT_ShortArray;
+ FT_ShortArray = array[0 .. (MaxInt div SizeOf(FT_Short))-1] of FT_Short;
(*************************************************************************)
(* *)