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
ecefccca
Commit
ecefccca
authored
Feb 08, 2007
by
Mike McCormack
Committed by
Alexandre Julliard
Feb 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msiexec: Catch the -Embedding flag and print out a message.
parent
94edfde1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
msiexec.c
programs/msiexec/msiexec.c
+9
-0
No files found.
programs/msiexec/msiexec.c
View file @
ecefccca
...
...
@@ -360,6 +360,12 @@ static DWORD DoRegServer(void)
return
ret
;
}
static
INT
DoEmbedding
(
LPWSTR
key
)
{
printf
(
"Remote custom actions are not supported yet
\n
"
);
return
1
;
}
static
BOOL
process_args_from_reg
(
LPWSTR
ident
,
int
*
pargc
,
WCHAR
***
pargv
)
{
LONG
r
;
...
...
@@ -438,6 +444,9 @@ int main(int argc, char **argv)
return
1
;
}
if
(
argc
==
3
&&
msi_option_equal
(
argvW
[
1
],
"Embedding"
))
return
DoEmbedding
(
argvW
[
2
]
);
for
(
i
=
1
;
i
<
argc
;
i
++
)
{
WINE_TRACE
(
"argvW[%d] = %s
\n
"
,
i
,
wine_dbgstr_w
(
argvW
[
i
]));
...
...
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