Implemented a semi-stub for GetProcessPriorityBoost.

oldstable
Lionel Ulmer 2003-06-04 20:17:00 +00:00 committed by Alexandre Julliard
parent 3e6b5e574c
commit 370db5b47c
2 changed files with 14 additions and 1 deletions

View File

@ -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 )

View File

@ -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.@)
*/