add parameter dcerpc_info to PIDL_dissect_ipv?address()
[wireshark-wip.git] / ui / gtk / fileset_dlg.h
blobb451fbb21fba1d497547691ce1e5686ca5a7221c
1 /* fileset_dlg.h
2 * Definitions for the fileset dialog box
4 * $Id$
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #ifndef __FILESET_DLG_H__
26 #define __FILESET_DLG_H__
28 /** @file
29 * "File Set" dialog box.
30 * @ingroup dialog_group
33 /** Enable file set menu items and look for similar files
35 * @param cf Capture file struct
37 extern void fileset_file_opened(const capture_file *cf);
39 /** Disable file set menu items
41 extern void fileset_file_closed(void);
44 /** Open the fileset dialog.
46 * @param w calling widget (unused)
47 * @param d data from calling widget (unused)
49 extern void fileset_cb(GtkWidget *w, gpointer d);
51 /** Open the next file in the file set, or do nothing if already the last file.
53 * @param w calling widget (unused)
54 * @param d data from calling widget (unused)
56 extern void fileset_next_cb(GtkWidget *w, gpointer d);
58 /** Open the previous file in the file set, or do nothing if already the first file.
60 * @param w calling widget (unused)
61 * @param d data from calling widget (unused)
63 extern void fileset_previous_cb(GtkWidget *w, gpointer d);
65 #endif /* fileset_dlg.h */