.idl 中的 coclass 导入接口在其他地方定义?
我有一个 IDL 文件,它定义了一些接口,后跟一个组件类。 我可以让这个类导入这个类中没有定义的接口吗?
I have an IDL file that defines a few interfaces followed by a coclass. Can I make this class import interfaces that are not defined in this class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。 您需要使用
import
指令加载外部接口的.idl,或者使用importlib
加载类型库。 像这样:或者这样:
Yes. You need to use the
import
directive to load the .idl for the external interfaces, or useimportlib
to load the type library. Something like this:Or this: