Skip to content
Snippets Groups Projects
Commit 370db5b4 authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard
Browse files

Implemented a semi-stub for GetProcessPriorityBoost.

parent 3e6b5e57
No related branches found
Tags wine-0.9.54
No related merge requests found
......@@ -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.@)
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment