Fix subclassing to support nested messages.
[wine] / programs / winebrowser / main.c
1 /*
2  * winebrowser - winelib app to launch native OS browser
3  *
4  * Copyright (C) 2004 Chris Morgan
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * NOTES:
21  *  Winebrowser is a winelib application that will start the appropriate
22  *  native browser up for a wine installation that lacks a windows browser.
23  *  Thus you will be able to open urls via native mozilla if no browser
24  *  has yet been installed in wine.
25  */
26
27 #include "config.h"
28 #include "wine/port.h"
29
30 #include <windows.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <errno.h>
34
35 /*****************************************************************************
36  * Main entry point. This is a console application so we have a main() not a
37  * winmain().
38  */
39 int main (int argc, char *argv[])
40 {
41   const char *argv_new[3];
42   DWORD maxLength;
43   CHAR szBrowsers[256];
44   DWORD type;
45   CHAR *defaultBrowsers = "mozilla,netscape,konqueror,galeon,opera,dillo";
46   char *browser;
47   HKEY hkey;
48   LONG r;
49
50   maxLength = sizeof(szBrowsers);
51
52   if(RegCreateKeyEx( HKEY_CURRENT_USER,
53                       "Software\\Wine\\WineBrowser", 0, NULL,
54                       REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL,
55                       &hkey, NULL))
56   {
57     fprintf( stderr, "winebrowser: cannot create config key\n" );
58     return 1;
59   }
60
61   r = RegQueryValueExA( hkey, "Browsers", 0, &type, szBrowsers, &maxLength);
62   if(r != ERROR_SUCCESS)
63   {
64     /* set value to the default */
65     RegSetValueExA(hkey, "Browsers", 0, REG_SZ,
66                    (LPBYTE)defaultBrowsers, lstrlen(defaultBrowsers) + 1);
67     strcpy( szBrowsers, defaultBrowsers );
68   }
69
70   RegCloseKey(hkey);
71
72
73   /* now go through the list of browsers until we run out or we find one that */
74   /* works */
75   browser = strtok(szBrowsers, ",");
76
77   while(browser)
78   {
79     argv_new[0] = browser;
80     argv_new[1] = argv[1];
81     argv_new[2] = NULL;
82
83     spawnvp(_P_OVERLAY, browser, argv_new);  /* only returns on error */
84
85     browser = strtok(NULL, ","); /* grab the next browser */
86   }
87   fprintf( stderr, "winebrowser: could not find a browser to run\n" );
88   return 1;
89 }