Include files in ridl

The Delphi project I'm working on requires me to create a very large type library to add COM support. The problem is that the / ridl type library editor in Delphi is that with a large number of files (from the programmer's point of view) it becomes difficult to manage, and I would like to separate it into functional lines. The problem is that I see no way to include one ridl file in another. I know about the importlib function, but I also cannot find a way to create more than one type of library in one project or create a tlb file from delphi. Can someone give me ideas on how to better manage this?

+4
source share
1 answer

The standard IDL has an include statement to pull other files into the TypeLibrary compilation. RIDL stands for REDUCED IDL, so it may not support it. You will have to try and see.

+1
source

All Articles