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
This commit is contained in:
Guy Harris 2001-03-24 02:14:56 +00:00
parent 58369df4ef
commit 8ac0e6618a
4 changed files with 11 additions and 8 deletions

3
file.c
View File

@ -1,7 +1,7 @@
/* file.c
* File I/O routines
*
* $Id: file.c,v 1.234 2001/03/24 02:07:20 guy Exp $
* $Id: file.c,v 1.235 2001/03/24 02:14:54 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -85,6 +85,7 @@
#include "ui_util.h"
#include "prefs.h"
#include "gtk/proto_draw.h"
#include "gtk/packet_win.h"
#include "dfilter/dfilter.h"
#include "conversation.h"
#include "globals.h"

View File

@ -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"

View File

@ -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

View File

@ -1,7 +1,7 @@
/* ui_util.h
* Definitions for UI utility routines
*
* $Id: ui_util.h,v 1.7 2001/03/24 02:07:20 guy Exp $
* $Id: ui_util.h,v 1.8 2001/03/24 02:14:54 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -40,9 +40,6 @@ void set_main_window_name(gchar *);
pop up the existing one rather than creating a new one. */
void reactivate_window(GtkWidget *);
/* Destroy all popup packet windows. */
void destroy_packet_wins(void);
#ifdef __cplusplus
}
#endif /* __cplusplus */