summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lowlevelunit.pas8
1 files changed, 8 insertions, 0 deletions
diff --git a/lowlevelunit.pas b/lowlevelunit.pas
index a871145..c8b4da9 100644
--- a/lowlevelunit.pas
+++ b/lowlevelunit.pas
@@ -7,6 +7,14 @@ interface
uses
math, Classes, SysUtils, RegExpr, process, FPimage, Graphics;
+{$IFDEF CPU64}
+type
+ longestOrdinal = int64;
+{$ELSE}
+type
+ longestOrdinal = longint;
+{$ENDIF}
+
type
generic tArray<t> = array of t;
tInt64Array = specialize tArray<int64>;