mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 10:19:19 +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;
|
PPointerArray = ^PointerArray;
|
||||||
|
|
||||||
// Delphi Berlin compatibility
|
// Delphi Berlin compatibility
|
||||||
FixedInt = Int32;
|
FixedInt = Int32;
|
||||||
FixedUInt = UInt32;
|
FixedUInt = UInt32;
|
||||||
|
PFixedInt = ^FixedInt;
|
||||||
|
PFixedUInt= ^FixedUInt;
|
||||||
|
|
||||||
|
|
||||||
{$if FPC_FULLVERSION >= 20701}
|
{$if FPC_FULLVERSION >= 20701}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user