mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 19:48:49 +02:00
* delphi compatible array types
This commit is contained in:
parent
44b7972e01
commit
77bb50032c
@ -31,6 +31,17 @@ unit objpas;
|
||||
{ Ansistring are the default }
|
||||
PString = PAnsiString;
|
||||
|
||||
{ array types }
|
||||
IntegerArray = array[0..$effffff] of Integer;
|
||||
TIntegerArray = IntegerArray;
|
||||
PIntegerArray = ^IntegerArray;
|
||||
PointerArray = array [0..512*1024*1024-2] of Pointer;
|
||||
TPointerArray = PointerArray;
|
||||
PPointerArray = ^PointerArray;
|
||||
{$ifdef HASINTF}
|
||||
TBoundArray = array of integer;
|
||||
{$endif HASINTF}
|
||||
|
||||
{****************************************************************************
|
||||
Compatibility routines.
|
||||
****************************************************************************}
|
||||
@ -369,7 +380,10 @@ end.
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.9 2002-01-06 21:59:13 peter
|
||||
Revision 1.10 2002-01-25 17:41:25 peter
|
||||
* delphi compatible array types
|
||||
|
||||
Revision 1.9 2002/01/06 21:59:13 peter
|
||||
* regenerated
|
||||
|
||||
Revision 1.8 2001/10/22 21:19:33 peter
|
||||
|
Loading…
Reference in New Issue
Block a user