Removed trailing whitespaces from .h and .c files using the
[obnox/wireshark/wip.git] / gtk / packet_win.h
1 /* packet_win.h
2  * Declarations for popping a window to display current packet
3  *
4  * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
5  *
6  * $Id: packet_win.h,v 1.7 2001/03/24 02:14:56 guy Exp $
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@zing.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  * 
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifndef __PACKET_WIN_H__
28 #define __PACKET_WIN_H__
29
30 /* Create a new packet window. */
31 extern void new_window_cb(GtkWidget *w);
32
33 /* Destroy all popup packet windows. */
34 void destroy_packet_wins(void);
35
36 /* Redraw the hex dump panes of all packet windows. */
37 void redraw_hex_dump_packet_wins(void);
38
39 #endif