]> git.sesse.net Git - vlc/blob - modules/gui/familiar/network.h
Fixed superflous tuning ;-)
[vlc] / modules / gui / familiar / network.h
1 /*****************************************************************************
2  * network.h : Network part of the gtk-familiar plugin.
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 VideoLAN
5  * $Id: network.h,v 1.1 2003/03/13 15:50:17 marcari Exp $
6  *
7  * Authors: Marc Ariberti <marcari@videolan.org>
8  *      
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 void
25 on_network_udp_toggled                 (GtkToggleButton *togglebutton,
26                                         gpointer         user_data);
27
28 void
29 on_network_udp_port_changed            (GtkEditable     *editable,
30                                         gpointer         user_data);
31
32 void
33 on_network_multicast_toggled           (GtkToggleButton *togglebutton,
34                                         gpointer         user_data);
35
36 void
37 on_network_multicast_port_changed      (GtkEditable     *editable,
38                                         gpointer         user_data);
39
40 void
41 on_network_multicast_address_changed   (GtkEditable     *editable,
42                                         gpointer         user_data);
43
44 void
45 on_network_http_toggled                (GtkToggleButton *togglebutton,
46                                         gpointer         user_data);
47
48 void
49 on_network_ftp_toggled                 (GtkToggleButton *togglebutton,
50                                         gpointer         user_data);
51
52 void
53 on_network_mms_toggled                 (GtkToggleButton *togglebutton,
54                                         gpointer         user_data);
55
56 void
57 FamiliarNetworkGo                      (GtkButton       *button,
58                                         gpointer         user_data);