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?

link|improve this question

77% accept rate
feedback

1 Answer

up vote 3 down vote accepted

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

link|improve this answer
Wow! GREAT info. I found pinvoke signature generator on this blog and was just trying to find a copy of winbase.h for Server 2008... I'll give this a try :-) – Andy Arismendi Feb 22 at 4:34
Just tried it out and it did the trick. Thank you very much! – Andy Arismendi Feb 22 at 4:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.