From 9e0ece41a580f511e6e416cb2485eedeac9736c1 Mon Sep 17 00:00:00 2001 From: Dan Kegel Date: Sat, 25 Aug 2007 08:43:24 -0700 Subject: [PATCH] shdocvw: iexplore needs to handle the -nohome option. --- dlls/shdocvw/iexplore.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dlls/shdocvw/iexplore.c b/dlls/shdocvw/iexplore.c index 4f737de4c98..3ab39eeafb1 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;