msiexec: Catch the -Embedding flag and print out a message.
This commit is contained in:
parent
94edfde1d9
commit
ecefcccabf
|
@ -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]));
|
||||
|
|
Loading…
Reference in New Issue