~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 00:24:27 UTC
  • mto: (1093.1.18 captain)
  • mto: This revision was merged to the branch mainline in revision 1098.
  • Revision ID: mordred@inaugust.com-20090716002427-dki0pvdyflastrto
Naming cleanups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
class sys_var;
46
46
typedef struct st_mysql_lex_string LEX_STRING;
47
47
 
48
 
#define plugin_decl(pi) ((pi)->plugin)
49
 
#define plugin_data(pi,cast) (static_cast<cast>((pi)->data))
50
 
#define plugin_name(pi) (&((pi)->name))
51
 
#define plugin_equals(p1,p2) ((p1) && (p2) && (p1) == (p2))
52
 
 
53
 
 
54
48
extern char *opt_plugin_load;
55
49
extern char *opt_plugin_dir_ptr;
56
50
extern char opt_plugin_dir[FN_REFLEN];