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
58722d6f
Commit
58722d6f
authored
Sep 20, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added /regserver and /unregserver options.
parent
233766aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
1 deletion
+19
-1
msiexec.c
programs/msiexec/msiexec.c
+19
-1
No files found.
programs/msiexec/msiexec.c
View file @
58722d6f
...
...
@@ -179,6 +179,8 @@ int main(int argc, char *argv[])
BOOL
FunctionPatch
=
FALSE
;
BOOL
FunctionDllRegisterServer
=
FALSE
;
BOOL
FunctionDllUnregisterServer
=
FALSE
;
BOOL
FunctionRegServer
=
FALSE
;
BOOL
FunctionUnregServer
=
FALSE
;
BOOL
GotProductCode
=
FALSE
;
LPCSTR
PackageName
=
NULL
;
...
...
@@ -209,7 +211,15 @@ int main(int argc, char *argv[])
{
WINE_TRACE
(
"argv[%d] = %s
\n
"
,
i
,
argv
[
i
]);
if
(
!
strncasecmp
(
argv
[
i
],
"/i"
,
2
))
if
(
!
strcasecmp
(
argv
[
i
],
"/regserver"
))
{
FunctionRegServer
=
TRUE
;
}
else
if
(
!
strcasecmp
(
argv
[
i
],
"/unregserver"
)
||
!
strcasecmp
(
argv
[
i
],
"/unregister"
))
{
FunctionUnregServer
=
TRUE
;
}
else
if
(
!
strncasecmp
(
argv
[
i
],
"/i"
,
2
))
{
char
*
argvi
=
argv
[
i
];
FunctionInstall
=
TRUE
;
...
...
@@ -619,6 +629,14 @@ int main(int argc, char *argv[])
{
DllUnregisterServer
(
DllName
);
}
else
if
(
FunctionRegServer
)
{
WINE_FIXME
(
"/regserver not implemented yet, ignoring
\n
"
);
}
else
if
(
FunctionUnregServer
)
{
WINE_FIXME
(
"/unregserver not implemented yet, ignoring
\n
"
);
}
else
ShowUsage
(
1
);
...
...
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