mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 19:49:31 +02:00
* define PNativeInt and PNativeUint as ^NativeInt and ^NativeUint, instead of
PPtrInt/PPtrUint, because on i8086 in the far data memory models the pointer size is different than the native int size. git-svn-id: trunk@26911 -
This commit is contained in:
parent
b672bc754a
commit
b3e6248547
@ -474,8 +474,8 @@ Type
|
||||
PWordBool = ^WordBool;
|
||||
PLongBool = ^LongBool;
|
||||
|
||||
PNativeInt = PPtrInt;
|
||||
PNativeUInt = PPtrUint;
|
||||
PNativeInt = ^NativeInt;
|
||||
PNativeUInt = ^NativeUint;
|
||||
pInt8 = PShortInt;
|
||||
pInt16 = PSmallint;
|
||||
pInt32 = PLongint;
|
||||
|
Loading…
Reference in New Issue
Block a user