diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-03-24 02:14:56 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-03-24 02:14:56 +0000 |
commit | 8ac0e6618a2d2bad339d7455de064c8383fab318 (patch) | |
tree | d0bb36cd7504a2e95c1230e9ddd906537a6277f4 /gtk/packet_win.h | |
parent | 58369df4ef1f56a235db207e4015db50a820341f (diff) | |
download | wireshark-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/packet_win.h')
-rw-r--r-- | gtk/packet_win.h | 8 |
1 files changed, 7 insertions, 1 deletions
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 |