~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/manifest.h

Merged in some naming things.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <drizzled/plugin/registry.h>
24
24
 
25
 
struct st_mysql_show_var;
26
 
struct st_mysql_sys_var;
 
25
struct drizzle_show_var;
 
26
struct drizzle_sys_var;
27
27
 
28
28
/* We use the following strings to define licenses for plugins */
29
29
enum plugin_license_type {
59
59
  plugin_license_type license; /* plugin license (PLUGIN_LICENSE_XXX)          */
60
60
  initialize_func_t init;     /* function to invoke when plugin is loaded     */
61
61
  initialize_func_t deinit;   /* function to invoke when plugin is unloaded   */
62
 
  st_mysql_show_var *status_vars;
63
 
  st_mysql_sys_var **system_vars;
 
62
  drizzle_show_var *status_vars;
 
63
  drizzle_sys_var **system_vars;
64
64
  void *reserved1;           /* reserved for dependency checking             */
65
65
};
66
66