oaidl.idl 和 ocidl.idl 有何用途?

发布于 2024-09-12 15:59:10 字数 189 浏览 10 评论 0原文

默认 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃酥萝莉 2024-09-19 15:59:10

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文