Commit 370db5b4 authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard

Implemented a semi-stub for GetProcessPriorityBoost.

parent 3e6b5e57
...@@ -1002,7 +1002,7 @@ ...@@ -1002,7 +1002,7 @@
@ stdcall GetDiskFreeSpaceExW (wstr ptr ptr ptr) @ stdcall GetDiskFreeSpaceExW (wstr ptr ptr ptr)
@ stdcall GetFileAttributesExA(str long ptr) @ stdcall GetFileAttributesExA(str long ptr)
@ stdcall GetFileAttributesExW(wstr long ptr) @ stdcall GetFileAttributesExW(wstr long ptr)
@ stub GetProcessPriorityBoost @ stdcall GetProcessPriorityBoost(long ptr)
@ stdcall GetThreadPriorityBoost(long ptr) @ stdcall GetThreadPriorityBoost(long ptr)
@ stdcall InterlockedCompareExchange (ptr long long) @ stdcall InterlockedCompareExchange (ptr long long)
@ stdcall InterlockedExchangeAdd (ptr long ) @ stdcall InterlockedExchangeAdd (ptr long )
......
...@@ -1719,6 +1719,19 @@ BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel, LPDWORD lpdwFlags ) ...@@ -1719,6 +1719,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.@) * SetProcessPriorityBoost (KERNEL32.@)
*/ */
BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost) BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment