add parameter dcerpc_info to PIDL_dissect_ipv?address()
[wireshark-wip.git] / ui / gtk / packet_win.h
blob1dd06e5f2f505b4d9c96dde9a8a34213be752472
1 /* packet_win.h
2 * Declarations for popping a window to display current packet
4 * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
6 * $Id$
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <gerald@wireshark.org>
10 * Copyright 1998 Gerald Combs
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #ifndef __PACKET_WIN_H__
28 #define __PACKET_WIN_H__
30 /** @file
31 * Pop up a window to display the current packet only.
34 /** Create a new packet window.
36 * @param widget parent widget (unused)
37 * @param reference open current packet or reference packet
39 extern void new_packet_window(GtkWidget *widget, gboolean reference, gboolean editable);
41 /** Destroy all popup packet windows.
43 void destroy_packet_wins(void);
45 /** Redraw the packet bytes panes of all packet windows. */
46 void redraw_packet_bytes_packet_wins(void);
48 /** Redissect all packet windows **/
49 void redissect_all_packet_windows(void);
51 #endif