Hello,
in File Soruce\WrapDelphi on Line 2789 if (RttiParam.ParamType = nil) or (RttiParam.ParamType.Handle = nil) or (GetTypeData(RttiParam.ParamType.Handle)) = nil) then you made the closing bracket to early (GetTypeData(RttiParam.ParamType.Handle)) should be (GetTypeData(RttiParam.ParamType.Handle) otherwise you cant compile.
Hello,
in File Soruce\WrapDelphi on Line 2789
if (RttiParam.ParamType = nil) or (RttiParam.ParamType.Handle = nil) or (GetTypeData(RttiParam.ParamType.Handle)) = nil) thenyou made the closing bracket to early(GetTypeData(RttiParam.ParamType.Handle))should be(GetTypeData(RttiParam.ParamType.Handle)otherwise you cant compile.