~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

  • Committer: Siddharth Prakash Singh
  • Date: 2010-03-26 19:25:23 UTC
  • mfrom: (1410 drizzle)
  • mto: This revision was merged to the branch mainline in revision 1425.
  • Revision ID: spsneo@spsneo-laptop-20100326192523-ibjlbt1p692vobtj
merging with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <drizzled/plugin/module.h>
27
27
#include "drizzled/plugin/version.h"
28
28
#include "drizzled/definitions.h"
 
29
#include "drizzled/plugin/context.h"
29
30
 
30
31
 
31
32
namespace drizzled
66
67
 
67
68
 
68
69
#define DRIZZLE_DECLARE_PLUGIN_END
69
 
#define DRIZZLE_PLUGIN(init,deinit,system) \
 
70
#define DRIZZLE_PLUGIN(init,system) \
70
71
  DRIZZLE_DECLARE_PLUGIN \
71
72
  { \
72
73
    DRIZZLE_VERSION_ID, \
75
76
    STRINGIFY_ARG(PANDORA_MODULE_AUTHOR), \
76
77
    STRINGIFY_ARG(PANDORA_MODULE_TITLE), \
77
78
    PANDORA_MODULE_LICENSE, \
78
 
    init, deinit, system, NULL \
 
79
    init, system, NULL \
79
80
  } 
80
81
 
81
82