~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/manifest.h

  • Committer: Monty Taylor
  • Date: 2010-03-06 02:08:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1381.
  • Revision ID: mordred@inaugust.com-20100306020813-c37d0b39004nl1zf
Remove plugin deinit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
  const char *descr;         /* general descriptive text (for SHOW PLUGINS ) */
61
61
  plugin_license_type license; /* plugin license (PLUGIN_LICENSE_XXX)          */
62
62
  initialize_func_t init;     /* function to invoke when plugin is loaded     */
63
 
  initialize_func_t deinit;   /* function to invoke when plugin is unloaded   */
64
63
  drizzle_sys_var **system_vars;
65
64
  void *reserved1;           /* reserved for dependency checking             */
66
65
};