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
13dccd75
Commit
13dccd75
authored
Apr 17, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Apr 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regsvr32: Ignore the /c flag.
parent
15e4ad48
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
regsvr32.c
programs/regsvr32/regsvr32.c
+3
-0
No files found.
programs/regsvr32/regsvr32.c
View file @
13dccd75
...
...
@@ -31,6 +31,7 @@
* [/i] Call DllInstall passing it an optional [cmdline];
* when used with /u calls dll uninstall.
* [/n] Do not call DllRegisterServer; this option must be used with [/i]
* [/c] Console output (seems to be deprecated and ignored)
*
* Note the complication that this version may be passed unix format file names
* which might be mistaken for flags. Conveniently the Windows version
...
...
@@ -242,6 +243,8 @@ int main(int argc, char* argv[])
}
else
if
((
!
strcasecmp
(
argv
[
i
],
"/n"
))
||
(
!
strcasecmp
(
argv
[
i
],
"-n"
)))
CallRegister
=
FALSE
;
else
if
((
!
strcasecmp
(
argv
[
i
],
"/c"
))
||
(
!
strcasecmp
(
argv
[
i
],
"-c"
)))
/* console output */
;
else
if
(
argv
[
i
][
0
]
==
'/'
&&
(
!
argv
[
i
][
2
]
||
argv
[
i
][
2
]
==
':'
))
printf
(
"Unrecognized switch %s
\n
"
,
argv
[
i
]);
else
...
...
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