如何从 C#/.NET 访问 .h 内的定义和结构?

发布于 2024-09-16 19:39:07 字数 328 浏览 9 评论 0原文

在访问 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 技术交流群。

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

发布评论

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

评论(3

注定孤独终老 2024-09-23 19:39:07

我认为你必须用 C# 重写它们

I think you have to rewrite them in C#

安穩 2024-09-23 19:39:07

正如已经提到的,您需要用 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.

渡你暖光 2024-09-23 19:39:07

您必须用 C# 重写它们。

You have to rewrite them in C#.

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