~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/ascii/ascii.cc

  • 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:
75
75
  return 0;
76
76
}
77
77
 
78
 
static int finalize(plugin::Context &context)
79
 
{
80
 
  context.remove(asciiudf);
81
 
  delete asciiudf;
82
 
  return 0;
83
 
}
84
 
 
85
78
DRIZZLE_DECLARE_PLUGIN
86
79
{
87
80
  DRIZZLE_VERSION_ID,
91
84
  "Return the ASCII value of a character",
92
85
  PLUGIN_LICENSE_GPL,
93
86
  initialize, /* Plugin Init */
94
 
  finalize,   /* Plugin Deinit */
95
87
  NULL,   /* system variables */
96
88
  NULL    /* config options */
97
89
}