MSWSP: WIP: dissect_CPMSetBindings()
[wireshark-wip.git] / ui / file_dialog.h
blob6515b766462421e0f61cdb522a78c950e5d4dbd8
1 /* file_dialog.h
2 * Common file dialog definitions
4 * $Id$
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 2006 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 __FILE_DIALOG_H__
26 #define __FILE_DIALOG_H__
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
32 typedef enum {
33 SAVE,
34 SAVE_WITHOUT_COMMENTS,
35 SAVE_IN_ANOTHER_FORMAT,
36 CANCELLED
37 } check_savability_t;
39 typedef enum {
40 merge_append,
41 merge_chrono,
42 merge_prepend
43 } merge_action_e;
45 typedef enum {
46 export_type_text = 1,
47 export_type_ps,
48 export_type_csv,
49 export_type_psml,
50 export_type_pdml,
51 export_type_carrays
52 } export_type_e;
54 #ifdef __cplusplus
56 #endif /* __cplusplus */
58 #endif /* __FILE_DIALOG_H__ */
61 * Editor modelines
63 * Local Variables:
64 * c-basic-offset: 4
65 * tab-width: 8
66 * indent-tabs-mode: nil
67 * End:
69 * ex: set shiftwidth=4 tabstop=8 expandtab:
70 * :indentSize=4:tabSize=8:noTabs=true: