Commit ecefccca authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msiexec: Catch the -Embedding flag and print out a message.

parent 94edfde1
......@@ -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]));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment