~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_plugin.h

  • Committer: Monty Taylor
  • Date: 2009-04-10 23:38:17 UTC
  • mto: (992.1.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: mordred@inaugust.com-20090410233817-q6pw0we5xsl96cao
Removed now meaningless plugin_type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
 
105
105
struct st_mysql_plugin
106
106
{
107
 
  uint32_t type;             /* plugin type (a DRIZZLE_XXX_PLUGIN value)     */
108
107
  const char *name;          /* plugin name (for SHOW PLUGINS)               */
109
108
  const char *version;       /* plugin version (for SHOW PLUGINS)            */
110
109
  const char *author;        /* plugin author (for SHOW PLUGINS)             */
120
119
extern char *opt_plugin_load;
121
120
extern char *opt_plugin_dir_ptr;
122
121
extern char opt_plugin_dir[FN_REFLEN];
123
 
extern const LEX_STRING plugin_type_names[];
124
122
 
125
123
extern int plugin_init(int *argc, char **argv, int init_flags);
126
124
extern void plugin_shutdown(void);