This interface selects the style of interface that the compiler will use:
{$INTERFACES COM}
|
selects COM compatible interfaces (descendent from IUnknown and reference counted), while
{$INTERFACES CORBA}
|
selects CORBA compatible interfaces (no parent interface, and not reference counted).
This switch is equivalent to the -SI command line option.