I have some code which uses an interface derived from IROEventWriter, generated by the older RemObjects SDK. In checking out why it doesn’t compile in the new version (8.0.81) I see that IROEventWriter is deprecated from Delphi10 up. I cannot though find any reference to this in the change log or the documentation.
Could someone point me at the relevant change please, and tell me what my code should be now?
xEvents := (BS2Client.ROEventRepository as IClientToServerEvents_Writer);
xEvents.ExcludeSessionList := False;
xEvents.SessionList.Clear;
xEvents.SessionList.Add(xSessionList[nLoop]);
xEvents.OptionChanged(EmptyGUID, nOption, szValue);
Thanks, Matthew