kernel32: Add a stub for SetProcessDEPPolicy.

This commit is contained in:
Detlef Riekenberg 2010-11-05 14:10:04 +01:00 committed by Alexandre Julliard
parent 7f043168c1
commit 41bd5d4efa
2 changed files with 10 additions and 0 deletions

View File

@ -1053,6 +1053,7 @@
@ stdcall SetNamedPipeHandleState(long ptr ptr ptr)
@ stdcall SetPriorityClass(long long)
@ stdcall SetProcessAffinityMask(long long)
@ stdcall SetProcessDEPPolicy(long)
@ stdcall SetProcessPriorityBoost(long long)
@ stdcall SetProcessShutdownParameters(long long)
@ stdcall SetProcessWorkingSetSize(long long long)

View File

@ -3394,3 +3394,12 @@ DEP_SYSTEM_POLICY_TYPE WINAPI GetSystemDEPPolicy(void)
FIXME("stub\n");
return OptIn;
}
/**********************************************************************
* SetProcessDEPPolicy (KERNEL32.@)
*/
BOOL WINAPI SetProcessDEPPolicy(DWORD newDEP)
{
FIXME("(%d): stub\n", newDEP);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}