aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/plugins.h
diff options
context:
space:
mode:
Diffstat (limited to 'wsutil/plugins.h')
-rw-r--r--wsutil/plugins.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wsutil/plugins.h b/wsutil/plugins.h
index 89751ee2fb..b3e96934b8 100644
--- a/wsutil/plugins.h
+++ b/wsutil/plugins.h
@@ -32,14 +32,14 @@ extern "C" {
#include "ws_symbol_export.h"
-typedef gboolean (*plugin_callback)(GModule *handle);
+typedef gboolean (*plugin_check_type_callback)(GModule *handle);
typedef enum {
REPORT_LOAD_FAILURE,
DONT_REPORT_LOAD_FAILURE
} plugin_load_failure_mode;
WS_DLL_PUBLIC void scan_plugins(plugin_load_failure_mode mode);
-WS_DLL_PUBLIC void add_plugin_type(const char *type, plugin_callback callback);
+WS_DLL_PUBLIC void add_plugin_type(const char *type, plugin_check_type_callback callback);
typedef void (*plugin_description_callback)(const char *, const char *,
const char *, const char *,
void *);