TODO SMB2 NegotiateContext....
[metze/wireshark/wip.git] / ui / export_pdu_ui_utils.h
1 /*
2  * export_pdu_ui_utils.h
3  * Routines for exported_pdu dissection
4  * Copyright 2013, Anders Broman <anders-broman@ericsson.com>
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12
13 #ifndef EXPORT_PDU_UI_UTILS_H
14 #define EXPORT_PDU_UI_UTILS_H
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif /* __cplusplus */
19
20 /**
21 * Filters the current opened capture file into a temporary file. On success,
22 * TRUE is returned and the filtered file is opened into the UI.
23 */
24 gboolean do_export_pdu(const char *filter, const gchar *tap_name, exp_pdu_t *data);
25
26
27 #ifdef __cplusplus
28 }
29 #endif /* __cplusplus */
30
31 #endif /* EXPORT_PDU_UI_UTILS_H */