From e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:34:10 +0200 Subject: Adding upstream version 4.2.2. Signed-off-by: Daniel Baumann --- wsutil/plugins.h | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 wsutil/plugins.h (limited to 'wsutil/plugins.h') diff --git a/wsutil/plugins.h b/wsutil/plugins.h new file mode 100644 index 0000000..96f3ac0 --- /dev/null +++ b/wsutil/plugins.h @@ -0,0 +1,63 @@ +/** @file + * definitions for plugins structures + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef __PLUGINS_H__ +#define __PLUGINS_H__ + +#include + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +typedef void (*plugin_register_func)(void); + +typedef void plugins_t; + +typedef enum { + WS_PLUGIN_EPAN, + WS_PLUGIN_WIRETAP, + WS_PLUGIN_CODEC +} plugin_type_e; + +WS_DLL_PUBLIC plugins_t *plugins_init(plugin_type_e type); + +typedef void (*plugin_description_callback)(const char *name, const char *version, + const char *types, const char *filename, + void *user_data); + +WS_DLL_PUBLIC void plugins_get_descriptions(plugin_description_callback callback, void *user_data); + +WS_DLL_PUBLIC void plugins_dump_all(void); + +WS_DLL_PUBLIC int plugins_get_count(void); + +WS_DLL_PUBLIC void plugins_cleanup(plugins_t *plugins); + +WS_DLL_PUBLIC bool plugins_supported(void); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __PLUGINS_H__ */ + +/* + * Editor modelines + * + * Local Variables: + * c-basic-offset: 4 + * tab-width: 8 + * indent-tabs-mode: nil + * End: + * + * ex: set shiftwidth=4 tabstop=8 expandtab: + * :indentSize=4:tabSize=8:noTabs=true: + */ -- cgit v1.2.3