Dann kannst du die Typen wohl nur noch ableiten.
Delphi-Quellcode:
type
//TBlaBla = Unit1.TBla; -> ohne Type wird nur ein Alias angelegt, aber für den Compiler und die RTTI bleibt es ein TBla aus der Unit Unit1
TBlaBla =
type Unit1.TBla;
TBlaBlub =
type Unit2.TBla;
function GetBla: TBlaBla;
function GetBlub: TBlaBlub;
Ein Therapeut entspricht 1024 Gigapeut.