~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/version/versionudf.cc

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
  return 0;
61
61
}
62
62
 
63
 
DRIZZLE_PLUGIN(initialize, NULL, NULL);
 
63
DRIZZLE_DECLARE_PLUGIN
 
64
{
 
65
  DRIZZLE_VERSION_ID,
 
66
  "version",
 
67
  "1.0",
 
68
  "Devananda van der Veen",
 
69
  N_("VERSION function"),
 
70
  PLUGIN_LICENSE_GPL,
 
71
  initialize,
 
72
  NULL,
 
73
  NULL,
 
74
}
 
75
DRIZZLE_DECLARE_PLUGIN_END;