aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/proto_draw.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-06-03 21:46:27 +0000
committerGuy Harris <guy@alum.mit.edu>2004-06-03 21:46:27 +0000
commit64d5806cecb44c4f0300a5bc3de1cbe2a22b2151 (patch)
tree7b7174dc8dc7d1e441cc926da21c7eb6c0a3b1b0 /gtk/proto_draw.h
parentdd2b4bd39373b301c6f446e658a16c19667e1b45 (diff)
Make static some routines and variables not used outside the source file
defining them. Move declarations of some callbacks outside the source files using them into the appropriate header, and arrange that the appropriate header is included by those source files. Move the SAT_E definition into a "sat.h" file, included both by "endpoint_talkers_table.h" and "hostlist_table.h", so that both of the latter headers can be included by the same file ("menu.c" has to include both, as per the change in the previous paragraph). svn path=/trunk/; revision=11096
Diffstat (limited to 'gtk/proto_draw.h')
-rw-r--r--gtk/proto_draw.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/gtk/proto_draw.h b/gtk/proto_draw.h
index 6bcce228b4..bca8e5e77d 100644
--- a/gtk/proto_draw.h
+++ b/gtk/proto_draw.h
@@ -1,7 +1,7 @@
/* proto_draw.h
* Definitions for GTK+ packet display structures and routines
*
- * $Id: proto_draw.h,v 1.26 2004/06/02 20:14:51 ulfl Exp $
+ * $Id: proto_draw.h,v 1.27 2004/06/03 21:46:27 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -89,6 +89,13 @@ extern void add_byte_views(epan_dissect_t *edt, GtkWidget *tree_view,
*/
extern gboolean byte_view_select(GtkWidget *widget, GdkEventButton *event);
+/** Callback for "Export Selected Packet Bytes" operation.
+ *
+ * @param w unused
+ * @param data unused
+ */
+extern void savehex_cb(GtkWidget * w, gpointer data);
+
#if GTK_MAJOR_VERSION < 2
/** Redraw a given byte view window.
*