p/invoke GetSystemDEPPolicy 函数的 .NET 签名
我找不到 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
定义 GetSystemDEPPolicy as
并且 DEP_SYSTEM_POLICY_TYPE 是一个枚举(假设您在开发环境中安装了 C++ 组件,请参阅 winbase.h - 如果没有,请尝试 winbase.h) 和 C 中的枚举默认为 int,因此我会选择
May我建议您按照 PInvoke
GetSystemDEPPolicy is defined as
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
May I recommend you follow this tutorial on PInvoke