mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 15:39:29 +02:00
* added pointer types for int8..int32 types after request on community site.
git-svn-id: trunk@24829 -
This commit is contained in:
parent
af54de6d56
commit
5de259e487
@ -417,6 +417,17 @@ type
|
||||
PWordBool = ^WordBool;
|
||||
PLongBool = ^LongBool;
|
||||
|
||||
PNativeInt = PPtrInt;
|
||||
PNativeUInt = PPtrUint;
|
||||
pInt8 = PShortInt;
|
||||
pInt16 = PSmallint;
|
||||
pInt32 = PLongint;
|
||||
PIntPtr = PPtrInt;
|
||||
pUInt8 = PByte;
|
||||
pUInt16 = PWord;
|
||||
pUInt32 = PDWord;
|
||||
PUintPtr = PPtrUInt;
|
||||
|
||||
PShortString = ^ShortString;
|
||||
PAnsiString = ^AnsiString;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user