kernel32: Add a stub for GetProcessDEPPolicy.
This commit is contained in:
parent
7604803dff
commit
d4ec0a19c0
|
@ -595,6 +595,7 @@
|
||||||
@ stdcall GetPrivateProfileStructW(wstr wstr ptr long wstr)
|
@ stdcall GetPrivateProfileStructW(wstr wstr ptr long wstr)
|
||||||
@ stdcall GetProcAddress(long str)
|
@ stdcall GetProcAddress(long str)
|
||||||
@ stdcall GetProcessAffinityMask(long ptr ptr)
|
@ stdcall GetProcessAffinityMask(long ptr ptr)
|
||||||
|
@ stdcall GetProcessDEPPolicy(long ptr ptr)
|
||||||
@ stdcall GetProcessFlags(long)
|
@ stdcall GetProcessFlags(long)
|
||||||
@ stdcall GetProcessHandleCount(long ptr)
|
@ stdcall GetProcessHandleCount(long ptr)
|
||||||
@ stdcall GetProcessHeap()
|
@ stdcall GetProcessHeap()
|
||||||
|
|
|
@ -3842,3 +3842,14 @@ BOOL WINAPI GetNumaAvailableMemoryNode(UCHAR node, PULONGLONG available_bytes)
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
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;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue