* 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:
nickysn 2014-03-01 13:23:32 +00:00
parent b672bc754a
commit b3e6248547

View File

@ -474,8 +474,8 @@ Type
PWordBool = ^WordBool;
PLongBool = ^LongBool;
PNativeInt = PPtrInt;
PNativeUInt = PPtrUint;
PNativeInt = ^NativeInt;
PNativeUInt = ^NativeUint;
pInt8 = PShortInt;
pInt16 = PSmallint;
pInt32 = PLongint;