提取 C/C++来自暴露给 COM 的 C# 类的头文件
我不确定我是否已在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有
tlb
,则不需要头文件。 tlb 的#import
会自动为您生成它。在此处查看有关
#import
的更多信息。If you have a
tlb
you do not need a header file.#import
of the tlb will generate it for you automatically.See more about
#import
here.如果您已经将 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++.