Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
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-or-later
10  */
11 
12 #ifndef __EXPORT_OBJECT_UI_H__
13 #define __EXPORT_OBJECT_UI_H__
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif /* __cplusplus */
18 
19 #include <epan/export_object.h>
20 
21 /* Common between protocols */
22 
23 gboolean eo_save_entry(const gchar *save_as_filename, export_object_entry_t *entry, gboolean show_err);
24 
25 #ifdef __cplusplus
26 }
27 #endif /* __cplusplus */
28 
29 #endif /* __EXPORT_OBJECT_UI_H__ */
30 
31 /*
32  * Editor modelines
33  *
34  * Local Variables:
35  * c-basic-offset: 4
36  * tab-width: 8
37  * indent-tabs-mode: nil
38  * End:
39  *
40  * ex: set shiftwidth=4 tabstop=8 expandtab:
41  * :indentSize=4:tabSize=8:noTabs=true:
42  */
Definition: export_object.h:21