Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Include files in ridl

Tags:

delphi

idl

The Delphi project I'm working on requires me to create a very large type library in order to add COM support. The problem is with the type library/ridl editor in Delphi is that it becomes difficult to manage (from a programmer point of view) such a large file, and I'd like to split it along functional lines. The problem I have is that I cannot see a way to include one ridl file in another. I'm aware of the importlib function, but I also cannot find a way to create more than one type library in the same project, or create a tlb file from within delphi. Can anyone give me ideas on how to better manage this?

like image 944
Keith Giddings Avatar asked Nov 15 '22 08:11

Keith Giddings


1 Answers

Standard IDL has an include statement for pulling in other files into the TypeLibrary compilation. RIDL stands for REDUCED IDL, so it might not support it, though. You will have to try it and see.

like image 109
Remy Lebeau Avatar answered Dec 23 '22 10:12

Remy Lebeau