~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_qcache.h

  • Committer: Brian Aker
  • Date: 2008-10-20 04:28:21 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-20081020042821-rqqdrccuu8195k3y
Second pass of thd cleanup

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 (*qcache_func1)(Session *thd, void *parm1, void *parm2);
36
 
  bool (*qcache_func2)(Session *thd, void *parm3, void *parm4);
 
35
  bool (*qcache_func1)(Session *session, void *parm1, void *parm2);
 
36
  bool (*qcache_func2)(Session *session, void *parm3, void *parm4);
37
37
} qcache_t;
38
38
 
39
39
#endif /* DRIZZLED_PLUGIN_QCACHE_H */