~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

  • Committer: Toru Maesaka
  • Date: 2009-01-27 05:00:51 UTC
  • mto: (779.3.8 devel)
  • mto: This revision was merged to the branch mainline in revision 816.
  • Revision ID: dev@torum.net-20090127050051-61u80p5munkyi57s
Renamed mysql_declare_plugin to drizzle_declare_plugin

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