Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4c5dd0e5
Commit
4c5dd0e5
authored
Apr 29, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regsvr32: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
65e2d341
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
Makefile.in
programs/regsvr32/Makefile.in
+2
-1
regsvr32.c
programs/regsvr32/regsvr32.c
+2
-7
No files found.
programs/regsvr32/Makefile.in
View file @
4c5dd0e5
MODULE
=
regsvr32.exe
APPMODE
=
-mwindows
-municode
IMPORTS
=
ole32 user32
EXTRADLLFLAGS
=
-mwindows
-municode
-mno-cygwin
C_SRCS
=
\
regsvr32.c
...
...
programs/regsvr32/regsvr32.c
View file @
4c5dd0e5
...
...
@@ -22,14 +22,9 @@
*/
#define WIN32_LEAN_AND_MEAN
#include "config.h"
#include "wine/port.h"
#include <windows.h>
#include <ole2.h>
#include "regsvr32.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
regsvr32
);
...
...
@@ -195,7 +190,7 @@ static WCHAR *parse_command_line(WCHAR *command_line)
{
if
(
command_line
[
0
]
==
':'
&&
command_line
[
1
])
{
int
len
=
strlenW
(
command_line
);
int
len
=
l
strlenW
(
command_line
);
command_line
++
;
len
--
;
...
...
@@ -246,7 +241,7 @@ int wmain(int argc, WCHAR* argv[])
if
(
argv
[
i
][
2
]
&&
argv
[
i
][
2
]
!=
':'
)
continue
;
switch
(
to
lowerW
(
argv
[
i
][
1
]))
switch
(
to
wlower
(
argv
[
i
][
1
]))
{
case
'u'
:
Unregister
=
TRUE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment