regsvr32: Build with msvcrt.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-04-29 10:51:01 +02:00
parent 65e2d341a0
commit 4c5dd0e513
2 changed files with 4 additions and 8 deletions

View file

@ -1,7 +1,8 @@
MODULE = regsvr32.exe MODULE = regsvr32.exe
APPMODE = -mwindows -municode
IMPORTS = ole32 user32 IMPORTS = ole32 user32
EXTRADLLFLAGS = -mwindows -municode -mno-cygwin
C_SRCS = \ C_SRCS = \
regsvr32.c regsvr32.c

View file

@ -22,14 +22,9 @@
*/ */
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include "config.h"
#include "wine/port.h"
#include <windows.h> #include <windows.h>
#include <ole2.h> #include <ole2.h>
#include "regsvr32.h" #include "regsvr32.h"
#include "wine/unicode.h"
#include "wine/debug.h" #include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(regsvr32); WINE_DEFAULT_DEBUG_CHANNEL(regsvr32);
@ -195,7 +190,7 @@ static WCHAR *parse_command_line(WCHAR *command_line)
{ {
if (command_line[0] == ':' && command_line[1]) if (command_line[0] == ':' && command_line[1])
{ {
int len = strlenW(command_line); int len = lstrlenW(command_line);
command_line++; command_line++;
len--; len--;
@ -246,7 +241,7 @@ int wmain(int argc, WCHAR* argv[])
if (argv[i][2] && argv[i][2] != ':') if (argv[i][2] && argv[i][2] != ':')
continue; continue;
switch (tolowerW(argv[i][1])) switch (towlower(argv[i][1]))
{ {
case 'u': case 'u':
Unregister = TRUE; Unregister = TRUE;