単純なインターフェース定義を含む idl があります。
library DecoToniCfgLib
{
importlib("stdole32.tlb");
//....code
//....code
[
object,
uuid(A6F30650-53F5-4688-829A-C084BA1C7DC0),
dual,
nonextensible,
helpstring("DecoToniConfig Interface"),
pointer_default(unique)
]
interface IDecoToniConfig : IDispatch
{
[id(1), helpstring("Opens the Tones config and returns the params")]
HRESULT OpenToneConfigWindow([out, retval] TCodecParams* pVal);
[id(2), helpstring("Opens the Tones config and returns the params in an array form")]
HRESULT OpenToneConfigWindowArray([out, retval] SAFEARRAY(float)* pVal);
[id(3), helpstring("Opens the masks config window")]
HRESULT OpenMaskConfigWindow([out, retval] SAFEARRAY(TMask)* pVal);
};
}
SAFEARRAY(float) を返すメソッドを追加しますが、TlbImp を実行してマネージ コードのインポート ライブラリを作成すると、次のようになります。
TlbImp : error TI1036 : Cannot find 'System.Single[] OpenToneConfigWindowArray()'
in 'DecoToniCfgLib.IDecoToniConfig' when implementing 'DecoToniCfgLib.IDecoToniConfig'
in 'interop.DecoToniConfigLib.DecoToniConfigClass'
from 'interop.DecoToniConfigLib, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null'.
どこに問題があるのでしょうか?
多分私は何かを参照する必要がありますか?もしそうなら…どうすればいいですか?
よろしく。