Return an interface from an out-of-process server...
So..
A : ISomeInterface;
B : AnOtherInterface;
A := CoSomeInterface.CreateRemote (OnThisMachine);
B := A.GetAnOtherInterface;
Is this possible? What code goes into GetAnotherInterface to pass a pointer that will have meaning accross processes and machines?
So..
A : ISomeInterface;
B : AnOtherInterface;
A := CoSomeInterface.CreateRemote (OnThisMachine);
B := A.GetAnOtherInterface;
Is this possible? What code goes into GetAnotherInterface to pass a pointer that will have meaning accross processes and machines?