~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_configvar.h

  • Committer: Brian Aker
  • Date: 2008-10-20 03:40:03 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081020034003-t2dcnl0ayr2ymm8k
THD -> Session rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
     if a function pointer is NULL, that's ok.
33
33
  */
34
34
 
35
 
  bool (*configvar_func1)(THD *thd, void *parm1, void *parm2);
36
 
  bool (*configvar_func2)(THD *thd, void *parm3, void *parm4);
 
35
  bool (*configvar_func1)(Session *thd, void *parm1, void *parm2);
 
36
  bool (*configvar_func2)(Session *thd, void *parm3, void *parm4);
37
37
} configvar_t;
38
38
 
39
39
#endif /* DRIZZLED_PLUGIN_CONFIGVAR_H */