0

我想在我的 midl 文件中使用 Windows::Foundation 中定义的接口。为此,我编写了以下示例代码,但它给出了编译错误:错误 MIDL2011 未解析的类型声明:IStringable [过程'MyCustomMethod2'的参数'param2'(接口'mytestmidl.MyTestInterface')] mytestmidl.idl 12

如何从我的 midl 文件中引用 IStringable 或其他接口?

#include <sdkddkver.h>
import "Windows.Foundation.idl";
//using namespace Windows::Foundation;

namespace mytestmidl
{ 
   [version(1.0), uuid(332FD2F1-1C69-4C91-949E-4BB67A85BE00)] 
   interface MyTestInterface : IInspectable
   {
       HRESULT MyCustomMethod1([in] HSTRING param1);
       HRESULT MyCustomMethod2([in] IStringable *param2);
   }
}
4

1 回答 1

0

我认为你应该在它前面加上这样的命名空间名称:

HRESULT MyCustomMethod2([in] Windows.Foundation.IStringable *param2);
于 2017-10-23T07:44:24.913 回答