p/invoke GetSystemDEPPolicy 函数的 .NET 签名

发布于 2025-01-07 11:57:01 字数 294 浏览 0 评论 0原文

我找不到 .NET 使用此函数 (GetSystemDEPPolicy) 的任何示例签名。

http://msdn.microsoft。 com/en-us/library/windows/desktop/bb736298(v=vs.85).aspx

这是一个相当简单的函数,但我不知道如何创建签名来调用它。有人可以帮忙吗?

I can't find any example signatures for .NET to use this function (GetSystemDEPPolicy).

http://msdn.microsoft.com/en-us/library/windows/desktop/bb736298(v=vs.85).aspx

It's a fairly simple function but I don't know how to create the signature to call it. Can someone please help?

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

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

发布评论

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

评论(1

枯叶蝶 2025-01-14 11:57:01

定义 GetSystemDEPPolicy as

DEP_SYSTEM_POLICY_TYPE WINAPI GetSystemDEPPolicy(void);

并且 DEP_SYSTEM_POLICY_TYPE 是一个枚举(假设您在开发环境中安装了 C++ 组件,请参阅 winbase.h - 如果没有,请尝试 winbase.h) 和 C 中的枚举默认为 int,因此我会选择

[DllImport("kernel32.dll", CharSet=CharSet.Auto, ExactSpelling=true)]
public static extern int GetSystemDEPPolicy();

May我建议您按照 PInvoke

GetSystemDEPPolicy is defined as

DEP_SYSTEM_POLICY_TYPE WINAPI GetSystemDEPPolicy(void);

and DEP_SYSTEM_POLICY_TYPE is an enum (see winbase.h assuming you have the C++ components installed in your development environment - if not try winbase.h) and enums in C default to int, as such I would go with

[DllImport("kernel32.dll", CharSet=CharSet.Auto, ExactSpelling=true)]
public static extern int GetSystemDEPPolicy();

May I recommend you follow this tutorial on PInvoke

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