fix doxygen generation
[obnox/wireshark/wip.git] / gtk / h323_conversations_dlg.h
1 /* h323_conversations_dlg.h
2  * H323 conversations addition for ethereal
3  *
4  * $Id$
5  *
6  * Copyright 2004, Iskratel, Ltd, Kranj
7  * By Miha Jemec <m.jemec@iskratel.si>
8  *
9  * based on rtp_stream_dlg.h
10  * Copyright 2003, Alcatel Business Systems
11  * By Lars Ruoff <lars.ruoff@gmx.net>
12  *
13  * Ethereal - Network traffic analyzer
14  * By Gerald Combs <gerald@ethereal.com>
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 H323_STREAM_DLG_H_INCLUDED
33 #define H323_STREAM_DLG_H_INCLUDED
34
35 #include <gtk/gtk.h>
36
37 /**
38  * Create or reactivate the h323 streams dialog box.
39  *
40  * @param list pointer to list of rtp_stream_info_t*
41  */
42 void h323conversations_dlg_show(GList *list);
43
44 /**
45  * Update the contents of the dialog box clist with that of list.
46  *
47  * @param list pointer to list of rtp_stream_info_t*
48  */
49 void h323conversations_dlg_update(GList *list);
50
51 #endif /* H323_STREAM_DLG_H_INCLUDED*/