我正在为Delphi主机和.NET插件使用Hydra接口。这是IPlugin.cs。我想在HydraInterface.pas和IPlugin.cs中添加更多方法和功能。但是当我添加新方法并实现时,当我调试时,它只停留在IPlugin.cs并且没有连接到HydraInterface.pas。如何更新C#插件和Delphi HydraInterface?
[Guid("B6135CAD-BF01-491B-8BF3-2D5D3059E731")]
public interface IHostInterface : IHYCrossPlatformInterface
{
bool WriteByte(string parameterValue, byte value);
bool WriteString(string parameterValue, string value);
bool WriteLong(string parameterValue, int value);
}
这是Delphi方面的HydraInterface.pas。
IHostInterface = interface;
IHostInterface = interface(IHYCrossPlatformInterface)
['{B6135CAD-BF01-491B-8BF3-2D5D3059E731}']
function WriteRegisterByte (const parameterValue:WideString; const value:Byte): boolean; safecall;
function WriteLong(const parameterValue:WideString; const value:integer): boolean;safecall;
function WriteString(const parameterValue:WideString; const value:WideString): boolean;safecall;
答案 0 :(得分:0)
COM接口中方法声明的顺序是二进制接口的一部分。方法声明的顺序用于确定COM接口vtable的布局。接口中方法声明的顺序不匹配,您应该纠正这种差异。