* Some IntN types

This commit is contained in:
michael 2019-06-10 10:58:57 +00:00
parent 46f7c2d5dc
commit 2c68cfda8c

View File

@ -50,6 +50,13 @@ const
Base types
*****************************************************************************}
type
Int8 = ShortInt;
UInt8 = Byte;
Int16 = SmallInt;
UInt16 = Word;
Int32 = Longint;
UInt32 = LongWord;
Integer = LongInt;
Cardinal = LongWord;
DWord = LongWord;
@ -68,6 +75,7 @@ type
TTime = type TDateTime;
TDate = type TDateTime;
Int64 = type NativeInt unimplemented; // only 53 bits at runtime
UInt64 = type NativeUInt unimplemented; // only 52 bits at runtime
QWord = type NativeUInt unimplemented; // only 52 bits at runtime