e58083ec76d926c3b14b45e2245eec20f3191c89
[metze/wireshark/wip.git] / ui / export_object_ui.h
1 /* export_object_ui.h
2  * Common routines for tracking & saving objects found in streams of data
3  * Copyright 2007, Stephen Fisher (see AUTHORS file)
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0+ */
10
11 #ifndef __EXPORT_OBJECT_UI_H__
12 #define __EXPORT_OBJECT_UI_H__
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif /* __cplusplus */
17
18 #include <epan/export_object.h>
19
20 /* Common between protocols */
21
22 gboolean eo_save_entry(const gchar *save_as_filename, export_object_entry_t *entry, gboolean show_err);
23
24 #ifdef __cplusplus
25 }
26 #endif /* __cplusplus */
27
28 #endif /* __EXPORT_OBJECT_UI_H__ */
29
30 /*
31  * Editor modelines
32  *
33  * Local Variables:
34  * c-basic-offset: 4
35  * tab-width: 8
36  * indent-tabs-mode: nil
37  * End:
38  *
39  * ex: set shiftwidth=4 tabstop=8 expandtab:
40  * :indentSize=4:tabSize=8:noTabs=true:
41  */