kernel32: Add a stub for GetProcessDEPPolicy.

This commit is contained in:
Austin English 2011-10-19 15:59:05 -07:00 committed by Alexandre Julliard
parent 7604803dff
commit d4ec0a19c0
2 changed files with 12 additions and 0 deletions

View File

@ -595,6 +595,7 @@
@ stdcall GetPrivateProfileStructW(wstr wstr ptr long wstr)
@ stdcall GetProcAddress(long str)
@ stdcall GetProcessAffinityMask(long ptr ptr)
@ stdcall GetProcessDEPPolicy(long ptr ptr)
@ stdcall GetProcessFlags(long)
@ stdcall GetProcessHandleCount(long ptr)
@ stdcall GetProcessHeap()

View File

@ -3842,3 +3842,14 @@ BOOL WINAPI GetNumaAvailableMemoryNode(UCHAR node, PULONGLONG available_bytes)
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/**********************************************************************
* GetProcessDEPPolicy (KERNEL32.@)
*/
BOOL WINAPI GetProcessDEPPolicy(HANDLE process, LPDWORD flags, PBOOL permanent)
{
FIXME("(%p %p %p): stub\n", process, flags, permanent);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}