From bd855826a9b15000f8ebf5451b42360abbc4684f Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Wed, 1 Aug 2012 22:32:14 +0000 Subject: Move the common parts of iface_lists.[ch] from ui/gtk/ to ui/. Leave the GTK+-specific parts behind in capture_dlg.c. svn path=/trunk/; revision=44196 --- ui/iface_lists.h | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 ui/iface_lists.h (limited to 'ui/iface_lists.h') diff --git a/ui/iface_lists.h b/ui/iface_lists.h new file mode 100644 index 0000000000..cd528f603b --- /dev/null +++ b/ui/iface_lists.h @@ -0,0 +1,50 @@ +/* iface_lists.h + * Declarations of routines to manage the global list of interfaces and to + * update widgets/windows displaying items from those lists + * + * $Id$ + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef __IFACE_LISTS_H__ +#define __IFACE_LISTS_H__ + +#ifdef HAVE_LIBPCAP +/* + * Used when sorting an interface list into alphabetical order by + * their descriptions. + */ +extern gint if_list_comparator_alph(const void *first_arg, const void *second_arg); + +/* + * Get the global interface list. Generate it if we haven't + * done so already. + */ +extern void fill_in_local_interfaces(void); + +/* + * Update the global interface list. + */ +extern void scan_local_interfaces(void); + +extern void hide_interface(gchar* new_hide); +#endif /* HAVE_LIBPCAP */ + +#endif /* __IFACE_LISTS_H__ */ -- cgit v1.2.1