See whether we can whitelist 'GPL (v3 or later)' for the output of Bison
[metze/wireshark/wip.git] / fileset.h
index c6d0dd9294289092da793bafa7bce67c3a90a722..2eb05cdc82a8889c436950bccb8b719061da366c 100644 (file)
--- a/fileset.h
+++ b/fileset.h
@@ -19,7 +19,7 @@
  *
  * 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifndef __FILESET_H__
@@ -29,7 +29,6 @@
 extern "C" {
 #endif /* __cplusplus */
 
-
 typedef struct _fileset_entry {
   char     *fullname;      /* File name with path (g_strdup'ed) */
   char     *name;          /* File name without path (g_strdup'ed) */
@@ -43,10 +42,7 @@ typedef struct _fileset_entry {
 /* helper: is this a probable file of a file set (does the naming pattern match)? */
 extern gboolean fileset_filename_match_pattern(const char *fname);
 
-/* helper: test, if both files could be in the same file set */
-extern gboolean fileset_is_file_in_set(const char *fname1, const char *fname2);
-
-extern void fileset_add_dir(const char *fname);
+extern void fileset_add_dir(const char *fname, void *window);
 
 extern void fileset_delete(void);
 
@@ -59,17 +55,14 @@ extern fileset_entry *fileset_get_previous(void);
 
 
 /* this file is a part of the current file set */
-extern void fileset_dlg_add_file(fileset_entry *entry);
+extern void fileset_dlg_add_file(fileset_entry *entry, void *window);
 
-extern void fileset_file_opened(const char *fname);
+extern void fileset_update_dlg(void *window);
 
-extern void fileset_file_closed(void);
-
-extern void fileset_update_dlg(void);
+extern void fileset_update_file(const char *path);
 
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
 
 #endif /* __FILESET_H__ */
-