Simplify the ciode a bit.
[obnox/wireshark/wip.git] / gtk / voip_calls_dlg.h
1 /* voip_calls_dlg.h
2  * VoIP conversations addition for Wireshark
3  *
4  * $Id$
5  *
6  * Copyright 2004, Ericsson , Spain
7  * By Francisco Alcoba <francisco.alcoba@ericsson.com>
8  *
9  * based on h323_conversations_dlg.h
10  * Copyright 2004, Iskratel, Ltd, Kranj
11  * By Miha Jemec <m.jemec@iskratel.si>
12  * 
13  * H323, RTP and Graph Support
14  * By Alejandro Vaquero, alejandro.vaquero@verso.com
15  * Copyright 2005, Verso Technologies Inc.
16  *
17  * Wireshark - Network traffic analyzer
18  * By Gerald Combs <gerald@wireshark.org>
19  * Copyright 1998 Gerald Combs
20  *
21  * This program is free software; you can redistribute it and/or
22  * modify it under the terms of the GNU General Public License
23  * as published by the Free Software Foundation; either version 2
24  * of the License, or (at your option) any later version.
25  *
26  * This program is distributed in the hope that it will be useful,
27  * but WITHOUT ANY WARRANTY; without even the implied warranty of
28  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29  * GNU General Public License for more details.
30  *
31  * You should have received a copy of the GNU General Public License
32  * along with this program; if not, write to the Free Software
33  * Foundation,  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
34  */
35
36 #ifndef __VOIP_CALLS_DLG_H__
37 #define __VOIP_CALLS_DLG_H__
38
39 #include <gtk/gtk.h>
40
41 /**
42  * Update the contents of the dialog box clist with that of list.
43  *
44  * @param list pointer to list of rtp_stream_info_t*
45  */
46 void voip_calls_dlg_update(GList *list);
47
48 /* functions for tap_listeners in voip_calls.c */
49 void voip_calls_dlg_draw(void *ptr);
50 void voip_calls_dlg_reset(void *ptr);
51
52 #endif /* __VOIP_CALLS_DLG_H__ */