oaidl.idl 和 ocidl.idl 有何用途?
默认 ATL 简单对象的 IDL 文件顶部包含以下内容:
import "oaidl.idl";
import "ocidl.idl";
这些文件的用途是什么?我如何知道何时需要导入它们?是否有任何文档描述这两个文件中定义的内容?我不知道“oa”和“oc”代表什么,文件本身也没有任何有用的注释。
A default ATL Simple Object has the following at the top of its IDL file:
import "oaidl.idl";
import "ocidl.idl";
What are these files for, and how do I know when I need to import them? Is there any documentation which describes what is defined in these two files? I have no idea what "oa" and "oc" stand for, and there are no helpful comments in the files themselves.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
oaidl.idl 和 ocidl.idl 随 Platform SDK/Windows SDK 一起提供。它们用于生成 oaidl.h 和 ocidl.h
ocidl 用于 OLE 容器(例如 ActiveX),而 oaidl 用于 OLE 自动化。在 MSDN 或 Windows SDK 文档中搜索 oaidl.h 和 ocidl.h 以获取有关这两个文件中定义的接口的信息。
您可能在文件中找不到足够的注释,但 MSDN 中记录了其中定义的接口。
oaidl.idl and ocidl.idl are shipped with Platform SDK/Windows SDK. They are used to generate oaidl.h and ocidl.h
ocidl is for OLE container (e.g. ActiveX) while oaidl is for OLE automation. search oaidl.h and ocidl.h in MSDN or Windows SDK documentation for information on interfaces defined in these two files.
You may not find enough comments in the files, but the interfaces that are defined there are documented in MSDN.