~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_plugin.h

  • Committer: Brian Aker
  • Date: 2008-07-13 20:34:17 UTC
  • Revision ID: brian@tangent.org-20080713203417-mvmtk1cx1r5vowes
More bool conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
extern void plugin_thdvar_init(THD *thd);
121
121
extern void plugin_thdvar_cleanup(THD *thd);
122
122
 
123
 
typedef my_bool (plugin_foreach_func)(THD *thd,
124
 
                                      plugin_ref plugin,
125
 
                                      void *arg);
 
123
typedef bool (plugin_foreach_func)(THD *thd,
 
124
                                   plugin_ref plugin,
 
125
                                   void *arg);
126
126
#define plugin_foreach(A,B,C,D) plugin_foreach_with_mask(A,B,C,PLUGIN_IS_READY,D)
127
127
extern bool plugin_foreach_with_mask(THD *thd, plugin_foreach_func *func,
128
128
                                     int type, uint state_mask, void *arg);