Use Interlocked* functions in AddRef and Release.
[wine.git] / programs / winebrowser / main.c
blobc54b8d8a20f3fb2ae958a7a89a4ea68b8a7f0245
1 /*
2 * winebrowser - winelib app to launch native OS browser
4 * Copyright (C) 2004 Chris Morgan
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.
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.
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
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.
27 #include "config.h"
28 #include "wine/port.h"
30 #include <windows.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <errno.h>
35 /*****************************************************************************
36 * Main entry point. This is a console application so we have a main() not a
37 * winmain().
39 int main (int argc, char *argv[])
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;
50 maxLength = sizeof(szBrowsers);
52 if(RegCreateKeyEx( HKEY_CURRENT_USER,
53 "Software\\Wine\\WineBrowser", 0, NULL,
54 REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL,
55 &hkey, NULL))
57 fprintf( stderr, "winebrowser: cannot create config key\n" );
58 return 1;
61 r = RegQueryValueExA( hkey, "Browsers", 0, &type, szBrowsers, &maxLength);
62 if(r != ERROR_SUCCESS)
64 /* set value to the default */
65 RegSetValueExA(hkey, "Browsers", 0, REG_SZ,
66 (LPBYTE)defaultBrowsers, lstrlen(defaultBrowsers) + 1);
67 strcpy( szBrowsers, defaultBrowsers );
70 RegCloseKey(hkey);
73 /* now go through the list of browsers until we run out or we find one that */
74 /* works */
75 browser = strtok(szBrowsers, ",");
77 while(browser)
79 argv_new[0] = browser;
80 argv_new[1] = argv[1];
81 argv_new[2] = NULL;
83 spawnvp(_P_OVERLAY, browser, argv_new); /* only returns on error */
85 browser = strtok(NULL, ","); /* grab the next browser */
87 fprintf( stderr, "winebrowser: could not find a browser to run\n" );
88 return 1;