* TPropInfo.GetProc, .SetProc and .StoredProc changed to CodePointer for compatibility with the i8086 medium memory model

git-svn-id: trunk@25117 -
This commit is contained in:
nickysn 2013-07-16 14:50:16 +00:00
parent 59d014dd10
commit 79db53b049

View File

@ -279,9 +279,9 @@ unit typinfo;
PPropInfo = ^TPropInfo;
TPropInfo = packed record
PropType : PTypeInfo;
GetProc : Pointer;
SetProc : Pointer;
StoredProc : Pointer;
GetProc : CodePointer;
SetProc : CodePointer;
StoredProc : CodePointer;
Index : Integer;
Default : Longint;
NameIndex : SmallInt;