merge_all_tap_menus() has been moved to menus.c.
[obnox/wireshark/wip.git] / gtk / packet_win.h
index 331ba89845c29bd342e12ebec96fa565f292af27..1f4f0f5a887f7c65bdbb45f44878ba2cbb8190ee 100644 (file)
@@ -3,10 +3,10 @@
  *
  * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
  *
- * $Id: packet_win.h,v 1.8 2002/08/28 21:03:48 jmayer Exp $
+ * $Id$
  *
- * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
  * This program is free software; you can redistribute it and/or
 #ifndef __PACKET_WIN_H__
 #define __PACKET_WIN_H__
 
-/* Create a new packet window. */
-extern void new_window_cb(GtkWidget *w);
+/** @file
+ *  Pop up a window to display the current packet only.
+ */
 
-/* Destroy all popup packet windows. */
+/** Create a new packet window.
+ *
+ * @param widget parent widget (unused)
+ */
+extern void new_packet_window(GtkWidget *widget, gboolean editable);
+
+/** 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);
+/** Redraw the packet bytes panes of all packet windows. */
+void redraw_packet_bytes_packet_wins(void);
 
 #endif