It seems that Delphi 4 does not have IInterface type at all in system.pas
How can I define this type myself so that I can use JEDI?
It seems that Delphi 4 does not have IInterface type at all in system.pas
How can I define this type myself so that I can use JEDI?
Copyright © 2021 Jogjafile Inc.
IInterfacewas introduced later than Delphi 4. For Delphi 4 you useIUnknownin place ofIInterface.If memory serves,
IInterfacewas introduced in Delphi 6 which was the release corresponding to the Kylix Linux compiler. The change was made to avoid exposing Windows specificIUnknownnomenclature to the new cross-platform Delphi.