fix compilation for:
[obnox/wireshark/wip.git] / gtk / mcast_stream_dlg.h
1 /* mcast_stream_dlg.h
2  *
3  * Copyright 2006, Iskratel , Slovenia
4  * By Jakob Bratkovic <j.bratkovic@iskratel.si> and
5  * Miha Jemec <m.jemec@iskratel.si>
6  *
7  * based on rtp_stream_dlg.h
8  * Copyright 2003, Alcatel Business Systems
9  * By Lars Ruoff <lars.ruoff@gmx.net>
10  *
11  * Wireshark - Network traffic analyzer
12  * By Gerald Combs <gerald@wireshark.org>
13  * Copyright 1998 Gerald Combs
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation,  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
28  */
29
30 #ifndef Mcast_STREAM_DLG_H_INCLUDED
31 #define Mcast_STREAM_DLG_H_INCLUDED
32
33 #include <gtk/gtk.h>
34
35 /** @file
36  *  "Mcast Stream Analysis" dialog box.
37  */
38
39 /**
40  * Create or reactivate the mcast streams dialog box.
41  *
42  * @param list pointer to list of mcast_stream_info_t*
43  */
44 void mcaststream_dlg_show(GList *list);
45
46 /**
47  * Update the contents of the dialog box clist with that of list.
48  *
49  * @param list pointer to list of mcast_stream_info_t*
50  */
51 void mcaststream_dlg_update(GList *list);
52
53 #endif /*Mcast_STREAM_DLG_H_INCLUDED*/