Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
init_wslua.h
Go to the documentation of this file.
1
10#ifndef __INIT_WSLUA_H__
11#define __INIT_WSLUA_H__
12
13#include "ws_symbol_export.h"
14
15#ifdef __cplusplus
16extern "C" {
17#endif /* __cplusplus */
18
19WS_DLL_PUBLIC int wslua_count_plugins(void);
20WS_DLL_PUBLIC void wslua_reload_plugins (register_cb cb, void *client_data);
21
22typedef void (*wslua_plugin_description_callback)(const char *, const char *,
23 const char *, const char *,
24 void *);
25WS_DLL_PUBLIC void wslua_plugins_get_descriptions(wslua_plugin_description_callback callback, void *user_data);
26WS_DLL_PUBLIC void wslua_plugins_dump_all(void);
27WS_DLL_PUBLIC const char *wslua_plugin_type_name(void);
28
29#ifdef __cplusplus
30}
31#endif /* __cplusplus */
32
33#endif /* __INIT_WSLUA_H__ */