* Add ptr types for fixed(u)int, fixes #40205

This commit is contained in:
marcoonthegit 2023-03-20 11:29:31 +01:00
parent 0d3ec87492
commit 33071fd179

View File

@ -56,8 +56,11 @@ interface
PPointerArray = ^PointerArray;
// Delphi Berlin compatibility
FixedInt = Int32;
FixedInt = Int32;
FixedUInt = UInt32;
PFixedInt = ^FixedInt;
PFixedUInt= ^FixedUInt;
{$if FPC_FULLVERSION >= 20701}