Browse Source

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

marcoonthegit 2 năm trước cách đây
mục cha
commit
015f037997
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      rtl/objpas/objpas.pp

+ 4 - 1
rtl/objpas/objpas.pp

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