~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

MergedĀ fromĀ toru.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
const char * const PLUGIN_LICENSE_BSD_STRING="BSD";
69
69
 
70
70
/*
71
 
  Macros for beginning and ending plugin declarations.  Between
72
 
  mysql_declare_plugin and mysql_declare_plugin_end there should
 
71
  Macros for beginning and ending plugin declarations. Between
 
72
  drizzle_declare_plugin and drizzle_declare_plugin_end there should
73
73
  be a st_mysql_plugin struct for each plugin to be declared.
74
74
*/
75
75
 
82
82
struct st_mysql_plugin _mysql_plugin_declarations_[]= {
83
83
#endif
84
84
 
85
 
#define mysql_declare_plugin(NAME) \
 
85
#define drizzle_declare_plugin(NAME) \
86
86
__DRIZZLE_DECLARE_PLUGIN(NAME, \
87
87
                 builtin_ ## NAME ## _plugin)
88
88
 
89
 
#define mysql_declare_plugin_end ,{0,0,0,0,0,0,0,0,0,0,0}}
 
89
#define drizzle_declare_plugin_end ,{0,0,0,0,0,0,0,0,0,0,0}}
90
90
 
91
91
/*
92
92
  declarations for SHOW STATUS support in plugins