3 * Copyright 2006, Iskratel , Slovenia
4 * By Jakob Bratkovic <j.bratkovic@iskratel.si> and
5 * Miha Jemec <m.jemec@iskratel.si>
9 * based on rtp_stream_dlg.h
10 * Copyright 2003, Alcatel Business Systems
11 * By Lars Ruoff <lars.ruoff@gmx.net>
13 * Wireshark - Network traffic analyzer
14 * By Gerald Combs <gerald@wireshark.org>
15 * Copyright 1998 Gerald Combs
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 #ifndef __MCAST_STREAM_DLG_H__
33 #define __MCAST_STREAM_DLG_H__
36 * @ingroup dialog_group
37 * "Mcast Stream Analysis" dialog box.
41 * Create or reactivate the mcast streams dialog box.
43 * @param list pointer to list of mcast_stream_info_t*
45 void mcaststream_dlg_show(GList
*list
);
48 * Update the contents of the dialog box clist with that of list.
50 * @param list pointer to list of mcast_stream_info_t*
52 void mcaststream_dlg_update(GList
*list
);
54 #endif /* __MCAST_STREAM_DLG_H__ */