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

This commit is contained in:
Mike McCormack 2007-02-08 10:56:27 +09:00 committed by Alexandre Julliard
parent 94edfde1d9
commit ecefcccabf
1 changed files with 9 additions and 0 deletions

View File

@ -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]));