comparison src/browser.c @ 3630:9682c0e022c6

[gaim-migrate @ 3753] Yeah this will probably break a lot of shit knowing my luck. But hey, I really don't care what people thnk. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 11 Oct 2002 03:14:01 +0000
parents cf00549c53d7
children ebfb80bbe1ed
comparison
equal deleted inserted replaced
3629:afc5bb164c5a 3630:9682c0e022c6
28 28
29 29
30 #ifdef HAVE_CONFIG_H 30 #ifdef HAVE_CONFIG_H
31 #include <config.h> 31 #include <config.h>
32 #endif 32 #endif
33 #ifdef _WIN32
34 #include <gdk/gdkwin32.h>
35 #else
36 #include <unistd.h>
37 #include <gdk/gdkx.h>
38 #endif
33 #include <stdio.h> 39 #include <stdio.h>
34 #include <stdlib.h> 40 #include <stdlib.h>
35 #include <unistd.h>
36 #include <string.h> 41 #include <string.h>
37 42
38 43
39 44
40 45
41 #include <gtk/gtk.h> 46 #include <gtk/gtk.h>
42 #include <gdk/gdkprivate.h> 47 #include <gdk/gdkprivate.h>
43 #include <gdk/gdkx.h>
44 #include "gaim.h" 48 #include "gaim.h"
45 49
46 #ifndef _WIN32 50 #ifndef _WIN32
47 51
48 52
650 /* Sooner or later, I shall support Windows clicking! */ 654 /* Sooner or later, I shall support Windows clicking! */
651 655
652 void add_bookmark(GtkWidget *w, char *url) 656 void add_bookmark(GtkWidget *w, char *url)
653 { 657 {
654 } 658 }
655 void open_url_nw(GtkWidget *w, char *url) 659 void open_url(GtkWidget *w, char *url)
656 { 660 {
661 ShellExecute(NULL, NULL, url, NULL, ".\\", 0);
657 } 662 }
658 663
659 664
660 #endif /* _WIN32 */ 665 #endif /* _WIN32 */