Commit 9e0ece41 authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard

shdocvw: iexplore needs to handle the -nohome option.

parent d01c8407
......@@ -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;
......
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