~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

Reverted changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
 
69
69
 
70
70
#define DRIZZLE_DECLARE_PLUGIN_END
71
 
#define DRIZZLE_PLUGIN(init,system) \
 
71
#define DRIZZLE_PLUGIN(init,system,options) \
72
72
  DRIZZLE_DECLARE_PLUGIN \
73
73
  { \
74
74
    DRIZZLE_VERSION_ID, \
77
77
    STRINGIFY_ARG(PANDORA_MODULE_AUTHOR), \
78
78
    STRINGIFY_ARG(PANDORA_MODULE_TITLE), \
79
79
    PANDORA_MODULE_LICENSE, \
80
 
    init, system, NULL \
 
80
    init, system, options \
81
81
  } 
82
82
 
83
83