mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 04:01:37 +02:00
* Add ptr types for fixed(u)int, fixes #40205
This commit is contained in:
parent
0d3ec87492
commit
33071fd179
@ -56,8 +56,11 @@ interface
|
||||
PPointerArray = ^PointerArray;
|
||||
|
||||
// Delphi Berlin compatibility
|
||||
FixedInt = Int32;
|
||||
FixedInt = Int32;
|
||||
FixedUInt = UInt32;
|
||||
PFixedInt = ^FixedInt;
|
||||
PFixedUInt= ^FixedUInt;
|
||||
|
||||
|
||||
{$if FPC_FULLVERSION >= 20701}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user