packet-ldap: use the correct tvb to report the SASL wrapped payload
[metze/wireshark/wip.git] / ui / iface_lists.h
index cd528f603bae84da466cef425d02774f94680342..125be9981b9ab765ed27afb618d99755027181ed 100644 (file)
@@ -2,8 +2,6 @@
  * 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 <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
 #ifndef __IFACE_LISTS_H__
 #define __IFACE_LISTS_H__
 
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
 #ifdef HAVE_LIBPCAP
 /*
  * Used when sorting an interface list into alphabetical order by
@@ -37,14 +39,31 @@ extern gint if_list_comparator_alph(const void *first_arg, const void *second_ar
  * Get the global interface list.  Generate it if we haven't
  * done so already.
  */
-extern void fill_in_local_interfaces(void);
+extern void fill_in_local_interfaces(void(*update_cb)(void));
 
 /*
  * Update the global interface list.
  */
-extern void scan_local_interfaces(void);
+extern void scan_local_interfaces(void (*update_cb)(void));
 
 extern void hide_interface(gchar* new_hide);
 #endif /* HAVE_LIBPCAP */
 
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
 #endif /* __IFACE_LISTS_H__ */
+
+/*
+ * Editor modelines
+ *
+ * Local Variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */