如何从 C#/.NET 访问 .h 内的定义和结构?
在访问 PDH.dll(Win32 API)(请参阅链接)使用P/Invoke,事实证明我需要访问几个常量和结构。我发现这些是在文件 PDH.h 中定义的。
如何访问这些定义和结构?我必须用 C# 重写它们吗?还有别的办法吗?
In accessing PDH.dll (a Win32 API) (see link) using P/Invoke, it turns out that I need access to several constants and structs. I found these are defined inside a file PDH.h.
How do I access these defines and structs? Do I have to rewrite them with C#? Is there another way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为你必须用 C# 重写它们
I think you have to rewrite them in C#
正如已经提到的,您需要用 C# 重写它们。但如果您幸运的话,有人已经在 PInvoke.net 上为您完成了这些操作
,或者,您可以尝试使用 Interop Signature Toolkit,它可以从 C 标头生成 C# 定义文件。
As already mentioned, you need to rewrite them in C#. But if you are lucky, someone will have already done them for you at PInvoke.net
Alternatively, you could try using the Interop Signature Toolkit, which can generate C# definitions from a C header file.
您必须用 C# 重写它们。
You have to rewrite them in C#.