Dan Kegel : shdocvw: iexplore needs to handle the -nohome option.
Module: wine Branch: master Commit: 9e0ece41a580f511e6e416cb2485eedeac9736c1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9e0ece41a580f511e6e416cb24... Author: Dan Kegel <dank(a)kegel.com> Date: Sat Aug 25 08:43:24 2007 -0700 shdocvw: iexplore needs to handle the -nohome option. --- dlls/shdocvw/iexplore.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/dlls/shdocvw/iexplore.c b/dlls/shdocvw/iexplore.c index 4f737de..3ab39ee 100644 --- a/dlls/shdocvw/iexplore.c +++ b/dlls/shdocvw/iexplore.c @@ -190,6 +190,12 @@ DWORD WINAPI IEWinMain(LPSTR szCommandLine, int nShowWindow) ExitProcess(1); } + /* FIXME: there are lots of other commandline options we need to parse */ + if(!strncasecmp(szCommandLine, "-nohome", 7)) { + FIXME("skipping -nohome option\n"); + szCommandLine += 8; + } + if(strcmp(szCommandLine, "-Embedding")) { LPWSTR url; DWORD len;
participants (1)
-
Alexandre Julliard