+#else
+ wxUnusedVar(output);
+ wxUnusedVar(error);
+#endif // wxUSE_STREAMS/!wxUSE_STREAMS
+
+ delete process;
+
+ return rc;
+}
+
+long wxExecute(const wxString& command, wxArrayString& output, int flags)
+{
+ return wxDoExecuteWithCapture(command, output, NULL, flags);
+}
+
+long wxExecute(const wxString& command,
+ wxArrayString& output,
+ wxArrayString& error,
+ int flags)
+{
+ return wxDoExecuteWithCapture(command, output, &error, flags);
+}
+
+// ----------------------------------------------------------------------------
+// Launch default browser
+// ----------------------------------------------------------------------------
+
+bool wxLaunchDefaultBrowser(const wxString& url)
+{
+ wxString finalurl = url;
+
+ //if it isn't a full url, try appending http:// to it
+ if(wxURI(url).IsReference())
+ finalurl = wxString(wxT("http://")) + url;
+
+#if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
+
+ wxString command;
+
+ // ShellExecute() always opens in the same window,
+ // so do it manually for new window (from Mahogany)
+ wxRegKey key(wxRegKey::HKCR, url.BeforeFirst(':') + wxT("\\shell\\open"));
+ if ( key.Exists() )
+ {
+ wxRegKey keyDDE(key, wxT("DDEExec"));
+ if ( keyDDE.Exists() )
+ {
+ wxString ddeTopic = wxRegKey(keyDDE, wxT("topic"));
+
+ // we only know the syntax of WWW_OpenURL DDE request
+ if ( ddeTopic == wxT("WWW_OpenURL") )
+ {
+ wxString ddeCmd = keyDDE;
+
+ // this is a bit naive but should work as -1 can't appear
+ // elsewhere in the DDE topic, normally
+ if ( ddeCmd.Replace(wxT("-1"), wxT("0"),
+ false /* only first occurence */) == 1 )
+ {
+ // and also replace the parameters
+ if ( ddeCmd.Replace(wxT("%1"), url, false) == 1 )
+ {
+ // magic incantation understood by wxMSW
+ command << wxT("WX_DDE#")
+ << wxRegKey(key, wxT("command")).QueryDefaultValue() << wxT('#')
+ << wxRegKey(keyDDE, wxT("application")).QueryDefaultValue()
+ << wxT('#') << ddeTopic << wxT('#')
+ << ddeCmd;
+ }
+ }
+ }
+ }
+ }
+
+ //Try wxExecute - if it doesn't work or the regkey stuff
+ //above failed, fallback to opening the file in the same
+ //browser window
+ if ( command.empty() || wxExecute(command) == -1)