aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-03-24 02:14:56 +0000
committerGuy Harris <guy@alum.mit.edu>2001-03-24 02:14:56 +0000
commit8ac0e6618a2d2bad339d7455de064c8383fab318 (patch)
treed0bb36cd7504a2e95c1230e9ddd906537a6277f4 /gtk
parent58369df4ef1f56a235db207e4015db50a820341f (diff)
downloadwireshark-8ac0e6618a2d2bad339d7455de064c8383fab318.tar.gz
wireshark-8ac0e6618a2d2bad339d7455de064c8383fab318.tar.bz2
wireshark-8ac0e6618a2d2bad339d7455de064c8383fab318.zip
The declaration of "destroy_packet_wins()" belongs in
"gtk/packet_win.h", along with the declarations of the other packet window manipulation routines; put it there. svn path=/trunk/; revision=3180
Diffstat (limited to 'gtk')
-rw-r--r--gtk/packet_win.c3
-rw-r--r--gtk/packet_win.h8
2 files changed, 8 insertions, 3 deletions
diff --git a/gtk/packet_win.c b/gtk/packet_win.c
index af4092a7d5..1cef5b1305 100644
--- a/gtk/packet_win.c
+++ b/gtk/packet_win.c
@@ -3,7 +3,7 @@
*
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
- * $Id: packet_win.c,v 1.19 2001/03/23 14:44:04 jfoster Exp $
+ * $Id: packet_win.c,v 1.20 2001/03/24 02:14:56 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -61,7 +61,6 @@
#include "util.h"
#include "packet_win.h"
#include "simple_dialog.h"
-#include "ui_util.h"
#include "proto_draw.h"
#include "keys.h"
#include "gtkglobals.h"
diff --git a/gtk/packet_win.h b/gtk/packet_win.h
index 6ca94550c1..37a63c4031 100644
--- a/gtk/packet_win.h
+++ b/gtk/packet_win.h
@@ -3,7 +3,7 @@
*
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
- * $Id: packet_win.h,v 1.6 2000/09/08 10:59:19 guy Exp $
+ * $Id: packet_win.h,v 1.7 2001/03/24 02:14:56 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -27,7 +27,13 @@
#ifndef __PACKET_WIN_H__
#define __PACKET_WIN_H__
+/* Create a new packet window. */
extern void new_window_cb(GtkWidget *w);
+
+/* Destroy all popup packet windows. */
+void destroy_packet_wins(void);
+
+/* Redraw the hex dump panes of all packet windows. */
void redraw_hex_dump_packet_wins(void);
#endif