diff options
Diffstat (limited to 'lowlevelunit.pas')
-rw-r--r-- | lowlevelunit.pas | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lowlevelunit.pas b/lowlevelunit.pas index f30ca0b..f08a80d 100644 --- a/lowlevelunit.pas +++ b/lowlevelunit.pas @@ -20,6 +20,8 @@ type tInt64Array = specialize tArray<int64>; tLongintArray = specialize tArray<longint>; pTLongintArray = ^tLongintArray; + tLongintArrayArray = specialize tArray<tLongintArray>; + pTLongintArrayArray = ^tLongintArrayArray; tSingleArray = specialize tArray<single>; pTSingleArray = ^tSingleArray; tInt64Point = array['x'..'y'] of int64; |