shdocvw: iexplore needs to handle the -nohome option.

This commit is contained in:
Dan Kegel 2007-08-25 08:43:24 -07:00 committed by Alexandre Julliard
parent d01c8407a9
commit 9e0ece41a5

View file

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