Ethereal-dev: Re: [ethereal-dev] Ethereal Win32 libpcap patch.

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <gharris@xxxxxxxxxxxx>
Date: Wed, 2 Feb 2000 22:39:18 -0800
> Attached is my patch. let me know if there are any problems.

One change in your patch adds

	void set_menus_for_capture_file(gboolean have_capture_file);
	void set_menus_for_capture_in_progress(gboolean capture_in_progress);

to "gtk/menu.h".

That shouldn't be necessary - they're also declared in the top-level
"menu.h" file, and the files that refer to those routines:

	file.c
	gtk/main.c
	gtk/menu.c

all include the top-level "menu.h" file ("gtk/main.c" and "gtk/menu.c"
also include "gtk/menu.h", as "menu.h", as well as including the
top-level "menu.h" file, as "../menu.h").

Why were those declarations added to "gtk/menu.h"?