shdocvw: iexplore needs to handle the -nohome option.
This commit is contained in:
parent
d01c8407a9
commit
9e0ece41a5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue