私はDelphi2007を使用していますが、次のような場合があります。
{ CommonUnit.pas }
type
// there is a callback which I want to process
TFooBar = procedure(Sender: IInterface) of object; stdcall;
// there is an interface which is used by all modules
IFoo = interface
['{0FAA4B2B-E82A-4A2A-B55F-C75EC53A1318}']
procedure Bar(Callback: TFooBar); stdcall;
end;
{ UnitInModuleCompiledWithoutPackages.pas }
type
// there is a class which implements IFoo
// and it's defined in Module One compiled without packages
TFoo = class(TInterfacedObject, IFoo)
public
// implementation is ommited
procedure Bar(Callback: TFooBar); stdcall;
end;
{ UnitInModuleCompiledWithPackages.pas }
// there is a code in Module Two compiled with packages
type
TSomeClass = class
public
// implementation is ommited
procedure SomeMethod(Sender: IInterface); stdcall;
end;
var
SomeObject: TSomeClass; // assigned by somehow
Foo: IFoo; // assigned by somehow
begin
// ...
Foo.Bar(SomeObject.SomeMethod); // so it is safe?
// ...
end;
Foo.Bar
次のように宣言されている場合、オブジェクト参照を渡そうとすると、メモリが破損することはわかっています。
type
IFoo = interface
['{0FAA4B2B-E82A-4A2A-B55F-C75EC53A1318}']
// TSomeClass now declared in CommonUnit.pas
procedure Bar(CallbackObject: TSomeClass); stdcall;
end;
これはTSomeClass
、モジュール1での実装がモジュール2での実装と同じではないためです(異なるメモリマネージャーなど)。
しかし、メソッド参照はどうですか?
Embarcaderoのドキュメントには、このことを解決するためのものは何も見つかりませんでした。