~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

  • Committer: Brian Aker
  • Date: 2010-02-18 04:43:04 UTC
  • mto: (1273.19.13 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1304.
  • Revision ID: brian@gaz-20100218044304-q66bxjkrs8t20y7i
Remove option for status hookup in plugins (either generate your own table
function (and union) or we add a new type of plugin which just does this).

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
 
67
67
 
68
68
#define DRIZZLE_DECLARE_PLUGIN_END
69
 
#define DRIZZLE_PLUGIN(init,deinit,status,system) \
 
69
#define DRIZZLE_PLUGIN(init,deinit,system) \
70
70
  DRIZZLE_DECLARE_PLUGIN \
71
71
  { \
72
72
    DRIZZLE_VERSION_ID, \
75
75
    STRINGIFY_ARG(PANDORA_MODULE_AUTHOR), \
76
76
    STRINGIFY_ARG(PANDORA_MODULE_TITLE), \
77
77
    PANDORA_MODULE_LICENSE, \
78
 
    init, deinit, status, system, NULL \
 
78
    init, deinit, system, NULL \
79
79
  } 
80
80
 
81
81