diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql/plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mysql/plugin.h b/include/mysql/plugin.h index 0422a9e2acf..a98aeb25a47 100644 --- a/include/mysql/plugin.h +++ b/include/mysql/plugin.h @@ -20,7 +20,7 @@ Plugin API. Common for all plugin types. */ -#define MYSQL_PLUGIN_INTERFACE_VERSION 0x0002 +#define MYSQL_PLUGIN_INTERFACE_VERSION 0x0100 /* The allowable types of plugins @@ -97,7 +97,7 @@ struct st_mysql_plugin const char *name; /* plugin name */ const char *author; /* plugin author (for SHOW PLUGINS) */ const char *descr; /* general descriptive text (for SHOW PLUGINS ) */ - int license; /* the plugin type (a MYSQL_XXX_PLUGIN value) */ + int license; /* the plugin license (PLUGIN_LICENSE_XXX) */ int (*init)(void *); /* the function to invoke when plugin is loaded */ int (*deinit)(void *);/* the function to invoke when plugin is unloaded */ unsigned int version; /* plugin version (for SHOW PLUGINS) */ |