~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_plugin.h

  • Committer: Monty Taylor
  • Date: 2009-07-16 17:37:03 UTC
  • mto: (1093.1.18 captain)
  • mto: This revision was merged to the branch mainline in revision 1098.
  • Revision ID: mordred@inaugust.com-20090716173703-kwbn8wd2eml3yp8j
Removed a dynamic array.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
class Session;
45
45
class sys_var;
46
46
typedef struct st_mysql_lex_string LEX_STRING;
 
47
struct my_option;
47
48
 
48
49
extern char *opt_plugin_load;
49
50
extern char *opt_plugin_dir_ptr;
51
52
 
52
53
extern int plugin_init(int *argc, char **argv, int init_flags);
53
54
extern void plugin_shutdown(void);
54
 
extern void my_print_help_inc_plugins(struct my_option *options, uint32_t size);
 
55
extern void my_print_help_inc_plugins(my_option *options);
55
56
extern bool plugin_is_ready(const LEX_STRING *name, int type);
56
57
extern bool mysql_install_plugin(Session *session, const LEX_STRING *name,
57
58
                                 const LEX_STRING *dl);