Dan Kegel : shdocvw: iexplore needs to handle the -nohome option.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Aug 27 06:07:42 CDT 2007


Module: wine
Branch: master
Commit: 9e0ece41a580f511e6e416cb2485eedeac9736c1
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9e0ece41a580f511e6e416cb2485eedeac9736c1

Author: Dan Kegel <dank at 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;




More information about the wine-cvs mailing list