1.1.32 $INTERFACES : Specify Interface type.

The f$INTERFACESg directive tells the compiler what it should take as the parent interface of an interface declaration which does not explicitly specify a parent interface. By default the Windows COM IUnknown interface is used. Other implementations of interfaces (CORBA or Java) do not necessarily have this interface, and for such cases, this directive can be used. It accepts the following three values:

COM
Interfaces will descend from IUnknown.
CORBA
Interfaces will not have a parent.
DEFAULT
Currently, this is COM.