Windows10
Delphi Xe2 update 4
libarary path is added
while installation Python_D150.bpl
IDE raise Error: [DCC Error] WrapDelphi.pas(2789): E2003 Undeclared identifier: 'TypeData'
and point to Error line: WarpDelphi.pas line 278:
if (RttiParam.ParamType = nil) or (RttiParam.ParamType.Handle = nil) or (RttiParam.ParamType.Handle.TypeData = nil) then
Exit;
I check out the Unit Sytem.Typinfo found a Strange place:
PPTypeInfo = ^PTypeInfo;
PTypeInfo = ^TTypeInfo;
TTypeInfo = record
Kind: TTypeKind;
Name: ShortString;
{TypeData: TTypeData}
end;
the TypeData section is be marked with a curly bracket in Delphi Xe2 !!!
I'm not sure if it makes trouble.
Windows10
Delphi Xe2 update 4
libarary path is added
while installation Python_D150.bpl
IDE raise Error: [DCC Error] WrapDelphi.pas(2789): E2003 Undeclared identifier: 'TypeData'
and point to Error line: WarpDelphi.pas line 278:
if (RttiParam.ParamType = nil) or (RttiParam.ParamType.Handle = nil) or (RttiParam.ParamType.Handle.TypeData = nil) then
Exit;
I check out the Unit Sytem.Typinfo found a Strange place:
PPTypeInfo = ^PTypeInfo;
PTypeInfo = ^TTypeInfo;
TTypeInfo = record
Kind: TTypeKind;
Name: ShortString;
{TypeData: TTypeData}
end;
the TypeData section is be marked with a curly bracket in Delphi Xe2 !!!
I'm not sure if it makes trouble.