Author: janderwald Date: Thu Jun 15 18:36:17 2006 New Revision: 22367
URL: http://svn.reactos.ru/svn/reactos?rev=22367&view=rev Log: * remove warning * return true in ValidatePowerPolicy
Modified: trunk/reactos/dll/win32/powrprof/powrprof.c
Modified: trunk/reactos/dll/win32/powrprof/powrprof.c URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/powrprof/powrprof.... ============================================================================== --- trunk/reactos/dll/win32/powrprof/powrprof.c (original) +++ trunk/reactos/dll/win32/powrprof/powrprof.c Thu Jun 15 18:36:17 2006 @@ -29,6 +29,7 @@ #include "powrprof.h" #include "wine/debug.h" #include "wine/unicode.h" +#include "stdlib.h"
WINE_DEFAULT_DEBUG_CHANNEL(powrprof);
@@ -308,7 +309,7 @@ /* FIXME: See note #3 */ FIXME("(%p, %p) stub!\n", pGPP, pPP); SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; + return TRUE;
}