"Lionel Ulmer" lionel.ulmer@free.fr wrote:
+BOOL WINAPI GetProcessPriorityBoost(HANDLE hprocess,PBOOL pDisablePriorityBoost) +{ + FIXME("(%p,%p): semi-stub\n", hprocess, pDisablePriorityBoost); + + /* Report that no boost is present.. */ + *pDisablePriorityBoost = FALSE;
I'm curious whether you need to test for pDisablePriorityBoost != NULL before setting its value...