unit ParentForm; interface uses Forms; type IParentForm = Interface(IInterface) procedure LogMessage( msg : string); procedure SetPrinterstatusText( txt: string; alert: boolean); function GetFormObject() : TForm; End; implementation end.