IDL 和 c++ 之间的关系源文件
为了了解接口,我正在尝试编写一个测试项目来实现 IDispatch 接口。 到目前为止,我已经:
- 在 Visual Studio 2010 中创建了一个 MFC dll 项目
编写了以下 IDL
[ uuid(68B0FAE7-3828-415D-94B0-720A007311FF),版本(1.0) ] 库测试 { importlib("stdole32.tlb"); importlib("stdole2.tlb"); [ uuid(DD35D282-ABEF-4411-B3D1-B4FD848516A5) ] 接口_Test:IDispatch { }; };
创建了一个名为 Test.h 的 C 头文件,但我不知道如何声明它链接到 IDL。任何帮助或你好世界教程都会很棒。谢谢
To lean about interfaces, I'm trying to write a test project to implement the IDispatch interface.
So far I've:
- created an MFC dll project in visual studio 2010
written the following IDL
[ uuid(68B0FAE7-3828-415D-94B0-720A007311FF), version(1.0) ] library Test { importlib("stdole32.tlb"); importlib("stdole2.tlb"); [ uuid(DD35D282-ABEF-4411-B3D1-B4FD848516A5) ] interface _Test : IDispatch { }; };
Created a C header file called Test.h but I'm wandering how I declare this to be linked to the IDL. Any help or hello world tutorials would be great. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用
midl 编译器
它能够在 c(或 C++?不记得)中生成标头/源代码,但最重要的是它会给你一个类型库(tlb)文件
#import 指令
将为类型库内容生成 C++ 定义。
You can you the
midl compiler
It is capable of generating header/sources in c (or C++? don't remember), but most importantly it will get you a typelibrary (tlb) file
#import directive
Will generate c++ definitions for the typelibrary contents.