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