Implemented a semi-stub for GetProcessPriorityBoost.
This commit is contained in:
parent
3e6b5e574c
commit
370db5b47c
|
@ -1002,7 +1002,7 @@
|
|||
@ stdcall GetDiskFreeSpaceExW (wstr ptr ptr ptr)
|
||||
@ stdcall GetFileAttributesExA(str long ptr)
|
||||
@ stdcall GetFileAttributesExW(wstr long ptr)
|
||||
@ stub GetProcessPriorityBoost
|
||||
@ stdcall GetProcessPriorityBoost(long ptr)
|
||||
@ stdcall GetThreadPriorityBoost(long ptr)
|
||||
@ stdcall InterlockedCompareExchange (ptr long long)
|
||||
@ stdcall InterlockedExchangeAdd (ptr long )
|
||||
|
|
|
@ -1718,6 +1718,19 @@ BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel, LPDWORD lpdwFlags )
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* GetProcessPriorityBoost (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI GetProcessPriorityBoost(HANDLE hprocess,PBOOL pDisablePriorityBoost)
|
||||
{
|
||||
FIXME("(%p,%p): semi-stub\n", hprocess, pDisablePriorityBoost);
|
||||
|
||||
/* Report that no boost is present.. */
|
||||
*pDisablePriorityBoost = FALSE;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetProcessPriorityBoost (KERNEL32.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue