提取 C/C++来自暴露给 COM 的 C# 类的头文件

发布于 2024-09-03 12:37:35 字数 253 浏览 5 评论 0原文

我不确定我是否已在 C# 类中正确设置所需的一切,但它确实可以在 COM 中工作。我一直在寻找在 C/C++ 项目中成功使用的 C# 类的示例,但没有找到任何东西。

我尝试使用 OLE/COM 对象视图应用程序打开 .tlb 文件并另存为 .h,但它给出了一些错误: MIDL1009:忽略未知参数; MIDL1001:无法打开输入文件 Studio

“Studio”不是文件名,而是 Syslog,因此这向我发出了危险信号。

有什么想法吗?

I'm not sure I've setup everything I've needed to in my C# class to properly, but it does work in COM. I've been looking for an example of a C# class that was successfully used in a C/C++ project, but haven't come across anything.

I've tried using the OLE/COM Object View app to open the .tlb file and save as .h, but it gives some errors: MIDL1009: unknown argument ignored; MIDL1001: cannot open input file Studio

"Studio" isn't the name of the file, it's Syslog, so that raises a red flag to me.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

各空 2024-09-10 12:37:36

如果您有tlb,则不需要头文件。 tlb 的#import 会自动为您生成它。

#import "my.tlb" named_guids raw_interfaces_only

此处查看有关 #import 的更多信息

If you have a tlb you do not need a header file. #import of the tlb will generate it for you automatically.

#import "my.tlb" named_guids raw_interfaces_only

See more about #import here.

平安喜乐 2024-09-10 12:37:36

如果您已经将 C# 类公开给 COM,那么您应该使用 COM 互操作从 C++ 代码访问 COM Callable Wrapper。

无需尝试生成头文件。

如果您可以选择在 C++ 项目中运行托管代码,那么您甚至不需要 COM,您可以直接引用 C# 类并像访问 C++ 中的任何其他 .NET 对象一样访问它。

If you have already exposed your C# class to COM, then you should be using COM interop to access the COM Callable Wrapper from your C++ code.

There is no need to try and generate a header file.

If you have the option of running managed code in your C++ project, then you don't even need COM, you can just reference your C# class directly and access it like you would any other .NET object from C++.

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