powrprof: Build with msvcrt.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-06-18 09:06:01 +02:00
parent 6a2d4277d6
commit 15eb79cca3
2 changed files with 5 additions and 3 deletions

View file

@ -2,4 +2,6 @@ MODULE = powrprof.dll
IMPORTLIB = powrprof
IMPORTS = advapi32
EXTRADLLFLAGS = -mno-cygwin
C_SRCS = powrprof.c

View file

@ -18,6 +18,7 @@
#include <stdarg.h>
#include <stdlib.h>
#include "ntstatus.h"
#define WIN32_NO_STATUS
@ -28,7 +29,6 @@
#include "winternl.h"
#include "powrprof.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL(powrprof);
@ -178,7 +178,7 @@ BOOLEAN WINAPI GetPwrDiskSpindownRange(PUINT RangeMax, PUINT RangeMin)
TRACE("Using default: 3600\n");
*RangeMax = 3600;
} else {
*RangeMax = atoiW((LPCWSTR)lpValue);
*RangeMax = wcstol((LPCWSTR)lpValue, NULL, 10);
}
cbValue = sizeof(lpValue);
@ -189,7 +189,7 @@ BOOLEAN WINAPI GetPwrDiskSpindownRange(PUINT RangeMax, PUINT RangeMin)
TRACE("Using default: 3\n");
*RangeMin = 3;
} else {
*RangeMin = atoiW((LPCWSTR)lpValue);
*RangeMin = wcstol((LPCWSTR)lpValue, NULL, 10);
}
RegCloseKey(hKey);