IDL 和 c++ 之间的关系源文件

发布于 2024-12-11 12:37:52 字数 432 浏览 0 评论 0原文

为了了解接口,我正在尝试编写一个测试项目来实现 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 技术交流群。

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

发布评论

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

评论(1

凉栀 2024-12-18 12:37:52

你可以使用

  • 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.

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